/* Import custom fonts - exactly matching reference design */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.6;
    color: #8B4513;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFFACD 25%, #FFF8DC 50%, #F5DEB3 75%, #FFFACD 100%);
    background-attachment: fixed;
    min-height: 100vh;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Page container */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: pageLoad 1.2s ease-out;
}

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

/* Enhanced Navigation */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(45deg, #F0E68C, #DDD19F, #E6D7A3);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-link {
    display: block;
    color: #8B4513;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    min-width: 140px;
    border: 1px solid rgba(240, 230, 140, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.08);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, rgba(218, 165, 32, 0.9), rgba(184, 134, 11, 0.9));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.25);
    border-color: rgba(218, 165, 32, 0.4);
}

/* Logo styling */
.logo-container {
    text-align: center;
    margin: 2rem 0;
}

.logo-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(218, 165, 32, 0.3));
    transition: transform 0.3s ease;
}

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

.logo-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: logoShine 4s linear infinite;
}

.logo-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 0 15px rgba(240, 230, 140, 0.3),
        0 0 0 30px rgba(240, 230, 140, 0.2),
        0 0 0 45px rgba(240, 230, 140, 0.1),
        0 30px 60px rgba(139, 69, 19, 0.3);
}

.logo-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Main content styling */
.main-content {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    animation: contentSlideUp 1s ease-out 0.3s both;
}

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

/* Enhanced PDF download button - Ultra Refined */
.pdf-download-section {
    text-align: center;
    margin: 3rem 0;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.05) 0%, 
        rgba(240, 230, 140, 0.1) 25%, 
        rgba(218, 165, 32, 0.05) 50%, 
        rgba(240, 230, 140, 0.1) 75%, 
        rgba(218, 165, 32, 0.05) 100%);
    color: var(--dark-brown);
    text-decoration: none;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 
        0 2px 10px rgba(218, 165, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pdf-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(218, 165, 32, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.pdf-download-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.pdf-download-btn:hover::before {
    left: 100%;
}

.pdf-download-btn:hover::after {
    width: 200px;
    height: 200px;
}

.pdf-download-btn:hover {
    color: var(--dark-brown);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(218, 165, 32, 0.8);
    box-shadow: 
        0 8px 30px rgba(218, 165, 32, 0.2),
        0 4px 15px rgba(218, 165, 32, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(218, 165, 32, 0.08) 0%, 
        rgba(240, 230, 140, 0.15) 50%, 
        rgba(218, 165, 32, 0.08) 100%);
}

.pdf-download-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
        0 4px 20px rgba(218, 165, 32, 0.15),
        inset 0 2px 5px rgba(218, 165, 32, 0.1);
    transition: all 0.15s ease;
}

.pdf-download-btn i {
    font-size: 1.3rem;
    opacity: 0.9;
    filter: drop-shadow(0 1px 2px rgba(218, 165, 32, 0.3));
    transition: all 0.3s ease;
}

.pdf-download-btn:hover i {
    transform: scale(1.1);
    opacity: 1;
}

/* Enhanced Package Cards Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.9), rgba(255, 250, 205, 0.8));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.15);
    border: 2px solid rgba(218, 165, 32, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.25);
    border-color: var(--primary-gold);
}

.package-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(240, 230, 140, 0.1));
}

.package-card.premium {
    border-color: #B8860B;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(218, 165, 32, 0.1));
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header .package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.package-header h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-description {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(139, 69, 19, 0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

.package-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    color: var(--dark-brown);
    position: relative;
    padding-left: 1.5rem;
}

.package-details li:before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.package-details .package-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: center;
    display: block;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 15px;
    padding: 0.5rem;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

/* Enhanced Experiences Grid */
.experiences-grid {
    max-width: 1200px;
    margin: 3rem auto;
}

.experience-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.experience-card {
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.95), rgba(255, 250, 205, 0.9));
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 6px 25px rgba(218, 165, 32, 0.12);
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(218, 165, 32, 0.2);
}

.experience-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.08), rgba(240, 230, 140, 0.08));
    transform: scale(1.02);
}

.experience-card.featured::after {
    content: '⭐ CONSIGLIATO';
    position: absolute;
    top: -8px;
    right: 15px;
    background: var(--primary-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.experience-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.experience-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.experience-price span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.experience-details p {
    font-style: italic;
    color: rgba(139, 69, 19, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.experience-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-details li {
    padding: 0.3rem 0;
    color: var(--dark-brown);
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.experience-details li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Enhanced section titles */
.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin: 3rem 0 2rem 0;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #F0E68C, #DAA520);
    border-radius: 2px;
}

/* Enhanced info boxes */
.info-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 2rem 0;
    box-shadow: 
        0 20px 60px rgba(139, 69, 19, 0.1),
        0 5px 20px rgba(139, 69, 19, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(240, 230, 140, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F0E68C, #DAA520, #DDD19F, #DAA520, #F0E68C);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(139, 69, 19, 0.15),
        0 10px 30px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: #8B4513;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.info-list li::before {
    content: '✦';
    color: #DAA520;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    top: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.info-list li:last-child {
    margin-bottom: 0;
}

/* Language dropdown enhanced styling */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(240, 230, 140, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #8B4513;
    text-decoration: none;
    min-width: 100px;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.08);
}

.language-toggle:hover {
    background: linear-gradient(45deg, rgba(218, 165, 32, 0.9), rgba(240, 230, 140, 0.8));
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.4);
}

.language-toggle i {
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-toggle i {
    transform: rotate(180deg);
}

.flag-icon {
    width: 24px;
    height: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.language-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(240, 230, 140, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(139, 69, 19, 0.15),
        0 5px 20px rgba(139, 69, 19, 0.08);
    backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    min-width: 180px;
    overflow: hidden;
}

.language-dropdown.active .language-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #8B4513;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-bottom: 1px solid rgba(240, 230, 140, 0.1);
    position: relative;
    overflow: hidden;
}

.language-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.language-option:hover::before {
    left: 100%;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(45deg, rgba(218, 165, 32, 0.1), rgba(240, 230, 140, 0.1));
    color: #8B4513;
    transform: translateX(8px);
    text-decoration: none;
}

/* Flag designs using external images */
.flag-icon.flag-it { background-image: url('https://flagicons.lipis.dev/flags/4x3/it.svg'); }
.flag-icon.flag-gb { background-image: url('https://flagicons.lipis.dev/flags/4x3/gb.svg'); }
.flag-icon.flag-es { background-image: url('https://flagicons.lipis.dev/flags/4x3/es.svg'); }
.flag-icon.flag-pt { background-image: url('https://flagicons.lipis.dev/flags/4x3/pt.svg'); }
.flag-icon.flag-fr { background-image: url('https://flagicons.lipis.dev/flags/4x3/fr.svg'); }

/* Enhanced footer */
.footer {
    background: linear-gradient(135deg, #F0E68C, #DDD19F, #E6D7A3);
    padding: 3rem 2rem;
    text-align: center;
    color: #8B4513;
    margin-top: auto;
    animation: footerSlideUp 1s ease-out 0.8s both;
    box-shadow: 0 -10px 30px rgba(139, 69, 19, 0.2);
}

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

.footer .container p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #8B4513;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.phone {
    font-size: 1.4rem;
    font-weight: 700 !important;
    color: #8B4513;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: phoneGlow 3s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
}

@keyframes phoneGlow {
    0%, 100% { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
    50% { text-shadow: 0 4px 8px rgba(218, 165, 32, 0.6), 0 2px 4px rgba(0, 0, 0, 0.2); }
}

.phone i {
    color: #8B4513;
    font-size: 1.3rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Responsive design */
@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    .logo-circle {
        width: 180px;
        height: 180px;
    }

    .main-content {
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-box {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .info-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .pdf-download-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .language-dropdown-content {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pdf-download-btn {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .info-list li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
}

/* Smooth scrolling and enhanced interactions */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FFF8DC;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #DAA520, #B8860B);
    border-radius: 6px;
    border: 2px solid #FFF8DC;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #8B4513, #A0522D);
}

/* Enhanced focus states for accessibility */
.nav-link:focus,
.language-toggle:focus,
.language-option:focus,
.pdf-download-btn:focus {
    outline: 3px solid rgba(218, 165, 32, 0.5);
    outline-offset: 2px;
}

/* Loading animation */
.page-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF8DC, #FFFACD);
    z-index: 9999;
    animation: pageLoader 1.5s ease-out forwards;
    pointer-events: none;
}

@keyframes pageLoader {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Elegant title styling */
.elegant-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #8B4513;
    margin: 2rem 0;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
}

/* Subtitle styling */
.subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: #8B4513;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    line-height: 1.6;
    font-style: italic;
    padding: 0 2rem;
}

/* Picnic gallery styling - 3 columns fixed */
.picnic-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.3);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
}

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

/* Picnic options styling - 3 columns fixed */
.picnic-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.option-column {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(240, 230, 140, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.12);
}

.option-column h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.option-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* Package styling */
.package {
    background: rgba(240, 230, 140, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.package h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #DAA520;
    font-weight: 700;
    margin: 1rem 0;
}

/* Packages list styling */
.packages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.package-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(240, 230, 140, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F0E68C, #DAA520);
}

.package-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.15);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.package-content h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #DAA520;
    font-weight: 700;
    margin: 1rem 0;
}

/* Experiences list styling */
.experiences-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.experience-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(240, 230, 140, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(139, 69, 19, 0.15);
}

.experience-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.experience-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #DAA520;
    font-weight: 700;
}

/* Vegetarian options styling */
.vegetarian-options {
    margin: 3rem 0;
    padding: 0 1rem;
}

.veg-option-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(240, 230, 140, 0.2);
    transition: all 0.4s ease;
}

.veg-option-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.15);
}

.veg-option-row.reverse {
    direction: rtl;
}

.veg-option-row.reverse * {
    direction: ltr;
}

.veg-content-left,
.veg-content-right {
    padding: 1rem;
}

.veg-content-left h3,
.veg-content-right h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 700;
}

.veg-content-left p,
.veg-content-right p {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #8B4513;
    line-height: 1.6;
}

.veg-image-left,
.veg-image-right {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.veg-image-left:hover,
.veg-image-right:hover {
    transform: scale(1.05);
}

.vertical-veg-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.vertical-veg-image.rotated-left {
    transform: rotate(-2deg);
}

.vertical-veg-image.rotated-right {
    transform: rotate(2deg);
}

.vertical-veg-image:hover {
    transform: scale(1.05) rotate(0deg);
}

.veg-badge {
    background: linear-gradient(45deg, #DAA520, #F0E68C);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

.veg-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.veg-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #F0E68C, #DAA520);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;
}

.veg-image-placeholder:hover {
    transform: scale(1.05);
}

.additional-option {
    background: rgba(240, 230, 140, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(218, 165, 32, 0.2);
    text-align: center;
}

.collaboration {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(240, 230, 140, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #8B4513;
    font-style: italic;
}

/* Additional responsive styles for new elements */
@media (max-width: 1024px) {
    .picnic-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .picnic-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .elegant-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .picnic-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .picnic-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option-column {
        padding: 2rem;
    }
    
    .option-column h3 {
        font-size: 1.8rem;
    }
    
    .packages-list {
        grid-template-columns: 1fr;
    }
    
    .experiences-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .veg-option-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .veg-image-left,
    .veg-image-right,
    .vertical-veg-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .elegant-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .option-column h3 {
        font-size: 1.6rem;
    }
    
    .package-content h3 {
        font-size: 1.6rem;
    }
    
    .experiences-list {
        grid-template-columns: 1fr;
    }
    
    .veg-option-row {
        padding: 1.5rem;
    }
}

/* Enhanced Responsive adjustments for packages and experiences */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-header h3 {
        font-size: 1.5rem;
    }

    .category-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience-card {
        padding: 1.2rem;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .experience-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .category-title {
        font-size: 2rem;
    }
}