/* HTA Premium Redesign - Inspired by Top Namibian Tour Sites */

:root {
    --orange-primary: #FF9933;
    --orange-light: #FFB366;
    --orange-accent: #FFCC99;
    --carbon-dark: #2C2C2C;
    --carbon-medium: #3A3A3A;
    --carbon-light: #4A4A4A;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A1A1A;
    --border-light: rgba(255, 153, 51, 0.2);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */

/* Navigation - White with transparent on load, scrolled effect */
nav {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--orange-primary);
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    background-color: transparent;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(255, 153, 51, 0.3);
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

nav.scrolled .logo img {
    filter: none;
    height: 80px;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    color: var(--orange-primary);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

nav.scrolled .nav-menu a {
    color: var(--carbon-dark);
    text-shadow: none;
}

nav.scrolled .nav-menu a:hover {
    color: var(--orange-primary);
    text-shadow: 0 0 15px rgba(255, 153, 51, 0.8);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 153, 51, 0.6);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--orange-primary);
}

.nav-cta {
    background: var(--orange-primary);
    color: var(--white) !important;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 153, 51, 0.6);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

nav.scrolled .mobile-menu-toggle span {
    background: var(--carbon-dark);
    box-shadow: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    background: var(--carbon-light);
    color: var(--orange-primary);
    padding-left: 40px;
}

.mobile-menu .nav-cta {
    background: var(--orange-primary);
    color: var(--white) !important;
    text-align: center;
    margin: 15px 20px;
    border-radius: 50px;
    border-bottom: none;
}

.mobile-menu .nav-cta:hover {
    background: var(--orange-light);
    padding-left: 32px;
}

/* ============================================
   HERO CAROUSEL SECTION
   ============================================ */

.hero-carousel {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44,44,44,0.4) 0%, rgba(44,44,44,0.7) 100%);
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.carousel-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
}

.carousel-content p {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-hero {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-hero-primary {
    background: var(--orange-primary);
    color: var(--white);
}

.btn-hero-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.5);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--carbon-dark);
    transform: translateY(-3px);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--orange-primary);
    width: 40px;
    border-radius: 6px;
}

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

/* Parallax Background Sections */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.75);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 60px 30px;
}

.parallax-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8);
}

.parallax-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Content Sections */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    background: var(--white);
}

.section-dark {
    background: var(--carbon-dark);
    color: var(--white);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--carbon-dark);
    letter-spacing: -1px;
    text-align: center;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 20px;
    color: var(--carbon-medium);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.section-dark .section-subtitle {
    color: var(--off-white);
}

/* Feature Cards with Images */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 153, 51, 0.3);
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.feature-content {
    padding: 35px;
}

.feature-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--carbon-dark);
    font-weight: 700;
}

.feature-content p {
    color: var(--carbon-medium);
    line-height: 1.7;
    font-size: 16px;
}

.feature-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

/* Tour Cards with Premium Design */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 153, 51, 0.3);
}

.tour-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-image span {
    font-size: 16px;
    color: var(--white);
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.tour-content {
    padding: 40px;
}

.tour-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--carbon-dark);
    font-weight: 700;
}

.tour-content p {
    color: var(--carbon-medium);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.tour-features {
    list-style: none;
    margin-bottom: 30px;
}

.tour-features li {
    color: var(--carbon-medium);
    margin-bottom: 12px;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
}

.tour-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 18px;
}

.tour-price {
    font-size: 36px;
    color: var(--orange-primary);
    font-weight: 800;
    margin-bottom: 25px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background: var(--orange-primary);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.3);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.5);
}

/* Gallery with Masonry Layout */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-header h1 {
    font-size: 52px;
    color: var(--carbon-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.gallery-header p {
    font-size: 20px;
    color: var(--carbon-medium);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange-primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 153, 51, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95) 0%, transparent 100%);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--orange-primary);
}

.item-overlay p {
    font-size: 14px;
    color: var(--off-white);
}

/* Upload Section (For Logged In Users) */
.upload-section {
    background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-light) 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 10px 40px rgba(255, 153, 51, 0.3);
}

.upload-section h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.upload-section p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Cards */
.hta-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 30px;
}

.hta-card h2 {
    color: var(--carbon-dark);
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
}

.text-muted {
    color: var(--carbon-medium);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Forms */
.hta-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--carbon-dark);
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--off-white);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    color: var(--carbon-dark);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

/* Footer */
.hta-footer {
    background: var(--carbon-dark);
    color: var(--white);
    padding: 40px 40px 20px;
    margin-top: 100px;
    position: relative;
}

.hta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-light) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto 20px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand .logo img {
    height: 100px;
    width: auto;
}

.footer-brand h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-brand span {
    color: var(--orange-primary);
}

.footer-brand p {
    color: var(--off-white);
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--orange-primary);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.footer-contact p {
    color: var(--off-white);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--off-white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--orange-primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--carbon-light);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--off-white);
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.heart {
    display: inline-block;
    color: var(--orange-primary);
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.4s ease;
    border-top: 3px solid var(--orange-primary);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--off-white);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--orange-primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-content a:hover {
    color: var(--orange-light);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-cookie-accept {
    background: var(--orange-primary);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--off-white);
    border: 2px solid var(--off-white);
}

.btn-cookie-decline:hover {
    background: var(--off-white);
    color: var(--carbon-dark);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 968px) {
    .carousel-content h1 { font-size: 42px; }
    .carousel-content p { font-size: 18px; }
    .section-title { font-size: 36px; }
    
    /* Hide desktop menu, show mobile toggle */
    .nav-menu { 
        display: none; 
    }
    
    .mobile-menu-toggle { 
        display: flex; 
    }
    
    .mobile-menu {
        display: block;
    }
    
    .tours-grid { 
        grid-template-columns: 1fr; 
    }
    
    .gallery-grid { 
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-decline {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .carousel-content h1 { 
        font-size: 32px; 
    }
    
    .hero-buttons { 
        flex-direction: column; 
    }
    
    .btn-hero { 
        width: 100%; 
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo img {
        height: 70px;
    }
    
    nav.scrolled .logo img {
        height: 60px;
    }
    
    .mobile-menu {
        top: 85px;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
    }
}