:root {
    --primary-pink: #FF85A2;
    --accent-yellow: #FFF44F; 
    --secondary-mint: #A2F2E8;
    --accent-blue: #85D3FF;
    --chocolate: #6B4226;
    --text-dark: #6B4226;
    --text-light: #FFFFFF;
    --card-bg: #FFF9FB;
    --light-bg: #fff5f7;
    --light-pink: #fff5f7;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--light-pink);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
     width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink), #ff6b95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader {
    text-align: center;
    color: white;
}

.loader-sprinkle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px;
    animation: bounce 1s infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loader p {
    margin-top: 30px;
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== HEADER & NAVIGATION ===== */
header {
     background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 15px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 0;
    right: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-image {
    height: 50px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 133, 162, 0.3));
    transition: transform 0.3s ease;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(2deg); 
    }
    75% { 
        transform: translateY(3px) rotate(-2deg); 
    }
}

.logo-image:hover {
    animation: logoSpin 1s ease;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.logo-text {
    font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-pink), #ff6b95);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--chocolate);
    margin-top: -5px;
}

/* ===== DESKTOP NAVIGATION ===== */
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-pink);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
      padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-pink));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 133, 162, 0.4);
}

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-pink);
    cursor: pointer;
    padding:0.5rem;
}

/* ===== Main Booking Section ===== */
.booking {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffeef2 100%);
    min-height: 100vh;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-btn {
    background-color: var(--primary-pink);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn:hover {
    background-color: #ff6b95;
    transform: translateY(-2px);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--chocolate);
}

.section-title span {
    color: var(--primary-pink);
}

.selected-package-banner {
    background: linear-gradient(135deg, var(--primary-pink), #ff6b95);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-package-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-price-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--chocolate);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.package-features-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.change-package-btn {
    margin-top: 1rem;
    background: white;
    color: var(--primary-pink);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.change-package-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

/* ===== Umbrella Selection Styles ===== */
.umbrella-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.umbrella-section h3 {
    color: var(--chocolate);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.umbrella-section .section-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Umbrella Selection Grid - 4 columns for desktop */
.umbrella-selection-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.umbrella-option {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    min-height: 320px;
}

.umbrella-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-pink);
}

.umbrella-option.selected {
    border-color: var(--primary-pink);
    background: rgba(255, 133, 162, 0.05);
}

/* Umbrella Images */
.umbrella-image-container {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    flex-shrink: 0;
}

.umbrella-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

/* Individual umbrella images */
.umbrella-option[data-id="classic-white"] .umbrella-image-container {
    background-image: url('white umbrella.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Black-White"] .umbrella-image-container {
    background-image: url('Umbrella in Black and Whitejpg.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Pink-White"] .umbrella-image-container {
    background-image: url('pink.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Blue-White"] .umbrella-image-container {
    background-image: url('Fringe Blue and White.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Pink-G"] .umbrella-image-container {
    background-image: url('pink.jfif');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Yellow-G"] .umbrella-image-container {
    background-image: url('beige.jfif');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Blue-G"] .umbrella-image-container {
    background-image: url('blue green.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-option[data-id="Beige-G"] .umbrella-image-container {
    background-image: url('beige.webp');
    background-size: 90% auto;
    background-position: center 30%;
}

.umbrella-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.umbrella-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--chocolate);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.umbrella-info p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
}

.umbrella-price {
    color: var(--primary-pink);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: auto;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 133, 162, 0.1);
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
}

/* Umbrella Radio Selector */
.umbrella-selector {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.umbrella-selector input[type="radio"] {
    display: none;
}

.umbrella-selector label {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
}

.umbrella-option:hover .umbrella-selector label {
    border-color: var(--primary-pink);
}

.umbrella-selector input[type="radio"]:checked + label {
    border-color: var(--primary-pink);
    background: var(--primary-pink);
}

.umbrella-selector input[type="radio"]:checked + label:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

/* Selected Umbrella Display */
.selected-umbrella-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 133, 162, 0.1) 0%, rgba(162, 242, 232, 0.1) 100%);
    border-radius: 10px;
    border: 2px solid var(--primary-pink);
    display: none;
    animation: fadeIn 0.5s ease;
}

.selected-umbrella-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.umbrella-image-preview {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Selected umbrella preview images */
.selected-umbrella-display[data-id="classic-white"] .umbrella-image-preview {
    background-image: url('white umbrella.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Black-White"] .umbrella-image-preview {
    background-image: url('Umbrella in Black and Whitejpg.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Pink-White"] .umbrella-image-preview {
    background-image: url('pink.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Blue-White"] .umbrella-image-preview {
    background-image: url('Fringe Blue and White.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Pink-G"] .umbrella-image-preview {
    background-image: url('pink.jfif');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Yellow-G"] .umbrella-image-preview {
    background-image: url('beige.jfif');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Blue-G"] .umbrella-image-preview {
    background-image: url('blue green.jpg');
    background-size: 90% auto;
    background-position: center 30%;
}

.selected-umbrella-display[data-id="Beige-G"] .umbrella-image-preview {
    background-image: url('beige.webp');
    background-size: 90% auto;
    background-position: center 30%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 133, 162, 0.2);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Guest Counter */
.guest-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    background: white;
    color: var(--primary-pink);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: var(--primary-pink);
    color: white;
}

.counter-value {
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

/* ===== BOOKING SUMMARY ===== */
.booking-summary {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-pink);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-pink);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
}

/* ===== Modal Styles ===== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal .modal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--chocolate);
}

/* Package Modal */
#packageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 145, 165, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

#packageModal .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    height: 90vh;
    position: relative;
    animation: slideUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#packageModal .modal-header {
    padding: 2rem 2rem 1rem 2rem;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-bottom: 1px solid #f0f0f0;
}

#packageModal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 2rem 2rem 2rem;
}

#packageModal .modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-pink);
    cursor: pointer;
    z-index: 11;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#packageModal .modal-close-btn:hover {
    background: rgba(255, 133, 162, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-pink);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);

} 

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0.8rem 1.5rem;
}

.newsletter-form button {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-pink);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== SPRINKLES ===== */
.sprinkle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

#sprinkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet */
@media (max-width: 1024px) {
    .umbrella-selection-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop navigation on mobile */
    nav ul {
        display: none;
    }
    
    /* Mobile Navigation Menu - Simple implementation */
    nav ul.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    nav ul.active li {
        margin: 0.5rem 0;
    }
    
    nav ul.active a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }
    
    /* Adjust header for mobile */
    header {
        padding: 1rem 20px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    /* Adjust booking section */
    .booking {
        padding: 6rem 1rem 3rem;
    }
    
    .booking-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Adjust umbrella grid */
    .umbrella-selection-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .umbrella-option {
        padding: 1.25rem;
        min-height: 280px;
    }
    
    .umbrella-image-container {
        height: 120px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .umbrella-selection-container {
        grid-template-columns: 1fr;
    }
    
    .umbrella-option {
        min-height: 260px;
    }
    
    .booking {
        padding: 5rem 0.75rem 2rem;
    }
    
    .booking-container {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .selected-package-banner h3 {
        font-size: 1.5rem;
    }
    
    .package-features-summary {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    

    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Desktop - Show nav, hide mobile button */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
    
    nav ul {
        display: flex;
    }
}