:root {
    --primary-color: #F57C00;
    --primary-dark: #E65100;
    --primary-light: #FFB74D;
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
    --bg-light: #FFF8F0;
    --bg-warm: #FFECB3;
    --bg-gradient-start: #FFF8F0;
    --bg-gradient-end: #FFE0B2;
    --shadow: rgba(62, 39, 35, 0.12);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    line-height: 1.4;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    box-shadow: 0 2px 12px var(--shadow);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.brand-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-link {
    color: var(--text-medium);
    font-size: 16px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.3) 0%, rgba(255, 224, 178, 0.4) 100%), 
                url('../images/hero-alpine-sunrise.jpg') center/cover no-repeat;
    margin-top: 70px;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 248, 240, 0.2) 0%, rgba(255, 248, 240, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 54px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.educational-notice {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.btn-hero {
    padding: 12px 36px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 10px 28px;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 124, 0, 0.4);
}

.content-section {
    padding: 5rem 0;
    animation: fadeIn 0.5s ease-in-out;
}

.content-section.bg-light {
    background-color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 42px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px var(--shadow);
    margin-bottom: 1rem;
}

.info-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(245, 124, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    color: var(--text-medium);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.15) 0%, rgba(255, 183, 77, 0.15) 100%);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px var(--shadow);
}

.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #E0E0E0;
    padding: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 124, 0, 0.25);
}

.contact-info-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px var(--shadow);
}

.contact-info-box h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-light);
    box-shadow: 0 2px 12px var(--shadow);
}

.disclaimer-box h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.disclaimer-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer {
    background: var(--text-dark);
    color: #E0E0E0;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer h4 {
    color: var(--primary-light);
    font-size: 20px;
    margin-bottom: 1.5rem;
}

.footer p {
    font-size: 15px;
    line-height: 1.6;
    color: #BCAAA4;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #BCAAA4;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.copyright {
    font-size: 14px;
    color: #8D6E63;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -2px 12px var(--shadow);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.modal-content {
    border-radius: var(--border-radius);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
}

.modal-body {
    padding: 2rem;
    font-size: 16px;
    line-height: 1.6;
}

.modal-body h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-image {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    body {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cookie-banner .text-right {
        text-align: center !important;
        margin-top: 1rem;
    }
}
