/* ==========================================================================
   hutes.hu - Main Stylesheet
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables - Brand Colors from Design */
:root {
    --primary-color: #003A6E;      /* Dark blue - headlines, icons */
    --secondary-color: #E8F3FF;    /* Light blue - background sections */
    --accent-color: #FFD000;       /* Yellow - CTA buttons */
    --text-color: #333333;         /* Black/grey - body text */
    --text-light: #666666;         /* Light grey - secondary text */
    --bg-color: #FFFFFF;           /* White - main background */
    --bg-light: #F3F9FF;           /* Very light blue - hero background */
    --border-color: #dee2e6;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}   line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; } }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #ffdb33;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 208, 0, 0.4);
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

nav a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: var(--spacing-md) 0;
    margin-top: 0;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
}

.hero-mascot img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 58, 110, 0.15));
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-benefits li::before {
    content: '❄️';
    font-size: 1.5rem;
}

.hero-benefits li:last-child::before {
    content: '🧰';
}

/* Benefits Block */
.benefits {
    background-color: var(--secondary-color);
    padding: var(--spacing-lg) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.benefit-item {
    padding: var(--spacing-md);
}

.benefit-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

/* Customer Segments Block */
.customers {
    background-color: var(--bg-color);
    padding: var(--spacing-lg) 0;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.customer-item {
    padding: var(--spacing-md);
}

.customer-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.customer-item h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Pricing Philosophy Block */
.pricing-philosophy {
    background-color: var(--bg-color);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.pricing-philosophy p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--secondary-color);
}

/* Final CTA Block */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005a9e 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.cta-final h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta-final .contact-info {
    margin-bottom: var(--spacing-lg);
}

.cta-final .contact-info p {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-final .contact-info a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color var(--transition-speed);
}

.cta-final .contact-info a:hover {
    border-color: white;
}

.cta-final .btn {
    font-size: 1.3rem;
    padding: 1.25rem 3rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-mascot {
        order: -1;
        padding: var(--spacing-sm);
    }
    
    .benefits-grid,
    .customers-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .pricing-philosophy p {
        font-size: 1.2rem;
        padding: 0 var(--spacing-sm);
    }
    
    .cta-final h2 {
        font-size: 1.75rem;
    }
    
    header .container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    nav ul {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
    
    .section {
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .benefits-grid,
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
