/* ===================================
   Norse Flora - Clean Modern Design
   =================================== */

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-slate) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 300px;
    max-width: 80vw;
    height: auto;
    opacity: 0;
    animation: logoFadeIn 0.8s ease-in-out 0.2s forwards;
}

.loading-logo.fade-out {
    animation: logoFadeOut 0.6s ease-in-out forwards;
}

@keyframes logoFadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes logoFadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.95); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Color Variables */
:root {
    --color-sage: #5F746B;
    --color-gold: #C7BA6E;
    --color-bronze: #A48243;
    --color-slate: #435559;
    --color-cream: #FBF8E1;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--color-cream);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-sage);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-sage);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-family: "Pinyon Script", cursive;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-gold);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0px 0px 30px rgba(0, 0, 0, 0.7);
}

h2 {
    font-family: "Ovo", serif;
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--color-cream);
}

h3 {
    font-family: "Ovo", serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--color-cream);
}

p {
    margin-bottom: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Header */
.site-header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: var(--color-slate);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 220px;
    height: auto;
}

.main-nav ul {
    display: flex;
    gap: 5px;
    list-style: none;
}

.main-nav a {
    font-family: "Ovo", serif;
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--color-cream);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.nav-social {
    display: none;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
}

.nav-social a {
    color: var(--color-cream);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-social a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 0;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(95, 116, 107, 0.90), rgba(95, 116, 107, 0.5) 50%, rgba(95, 116, 107, 1));
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    color: var(--color-gold);
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.95), 0px 0px 35px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero h2 {
    font-size: 28px;
    max-width: 650px;
    margin: 0 auto 20px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0px 0px 30px rgba(0, 0, 0, 0.7);
    color: var(--color-cream);
    line-height: 1.4;
}

.hero p {
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0px 0px 30px rgba(0, 0, 0, 0.7);
    color: var(--color-cream);
    line-height: 1.5;
}

.hero p a {
    color: var(--color-cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Ovo", serif;
}

.hero p a:hover {
    color: var(--color-gold);
}

.btn-primary {
    background-color: var(--color-bronze);
    color: var(--color-cream);
    padding: 14px 36px;
    border: 2px solid var(--color-gold);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-slate);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(199, 186, 110, 0.3);
}

/* Section Styles */
section {
    padding: 50px 0;
    overflow-x: hidden;
}

/* Introduction */
.intro {
    text-align: center;
}

.intro h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.intro p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Event Packages */
.packages {
}

.packages h1 {
    text-align: center;
    margin-bottom: 20px;
}

.packages .section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.packages h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
}

.package-card.other-events-card {
    grid-column: 1 / -1;
}

.package-card {
    background: rgba(67, 85, 89, 0.4);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.package-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.package-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-cream);
    margin: 15px 0;
    font-family: "Roboto", sans-serif;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.package-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(199, 186, 110, 0.3);
    color: var(--color-cream);
    font-size: 14px;
}

.package-card li:before {
    content: "❖";
    color: var(--color-gold);
    font-weight: normal;
    margin-right: 12px;
    font-size: 14px;
}

/* Other Events */
.other-events {
}

.other-events h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 35px;
}

.other-events-card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.other-events-card p {
    text-align: center;
    margin-bottom: 20px;
}

.other-events-card .events-list {
    columns: 2;
    column-gap: 30px;
    list-style: none;
    padding: 0;
    margin: 25px auto;
    max-width: 600px;
}

.other-events-card .events-list li {
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
    break-inside: avoid;
    color: var(--color-cream);
}

.other-events-card .events-list li:before {
    content: "❖";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: normal;
    font-size: 14px;
}

.btn-secondary {
    background-color: var(--color-bronze);
    color: var(--color-cream);
    padding: 14px 36px;
    border: 2px solid var(--color-gold);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-slate);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(199, 186, 110, 0.3);
}

/* Lodging */
.lodging {
}

.lodging-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.lodging-text {
    flex: 1;
}

.lodging-text ul {
    list-style: none;
    padding: 0;
}

.lodging-text ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.lodging-text ul li:before {
    content: "❖";
    color: var(--color-gold);
    font-weight: normal;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.lodging-image {
    flex: 0.6;
}

.lodging-image img {
    border-radius: 20px;
    width: 100%;
}

.lodging h2 {
    text-align: center;
    margin-bottom: 50px;
}

.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.lodging-item {
    background: rgba(67, 85, 89, 0.4);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
}

.lodging-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.lodging-item h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.lodging-item p {
    line-height: 1.7;
    font-size: 16px;
}

/* Area Attractions */
.attractions {
}

.attractions-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.attractions-text {
    flex: 1;
}

.attractions-text ul {
    list-style: none;
    padding: 0;
}

.attractions-text ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.attractions-text ul li:before {
    content: "❖";
    color: var(--color-gold);
    font-weight: normal;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.attractions-image {
    flex: 0.6;
}

.attractions-image img {
    border-radius: 20px;
    width: 100%;
}

.attractions h2 {
    text-align: center;
    margin-bottom: 50px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.attraction-item {
    background: rgba(67, 85, 89, 0.4);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--color-gold);
    transition: all 0.3s ease;
}

.attraction-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.attraction-item h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.attraction-item p {
    line-height: 1.7;
    font-size: 16px;
}

/* Gallery */
.gallery {
    padding: 50px 30px;
}

.gallery h1 {
    text-align: center;
    margin-bottom: 10px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    column-count: 3;
    column-gap: 18px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid var(--color-gold);
    margin-bottom: 18px;
    break-inside: avoid;
    display: block;
    box-sizing: border-box;
    transition: transform 0.4s ease;
    overflow: hidden;
    color: transparent;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* FAQ */
/* FAQ */
.faq {
    padding: 70px 30px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: rgba(67, 85, 89, 0.3);
    border: 2px solid rgba(199, 186, 110, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-gold);
    background: rgba(67, 85, 89, 0.4);
}

.faq-item.active {
    border-color: var(--color-gold);
    background: rgba(67, 85, 89, 0.5);
}

.faq-question {
    background: transparent;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--color-cream);
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question::after {
    content: "+";
    font-size: 28px;
    color: var(--color-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease, opacity 0.6s ease;
    padding: 0 28px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 28px 24px 28px;
    opacity: 1;
}

.faq-answer p {
    color: var(--color-cream);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Contact */
.contact {
    padding: 70px 30px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    margin-bottom: 10px;
}

.contact-header h3 {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.9;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item .icon {
    font-size: 32px;
    color: var(--color-gold);
}

.contact-info-item h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--color-gold);
    font-weight: 500;
}

.contact-info-item p {
    margin: 0;
    font-size: 18px;
}

.contact-info-item a {
    color: var(--color-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--color-gold);
}

.social-links {
    text-align: center;
    margin-bottom: 50px;
}

.social-links a {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-cream);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper h5 {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    color: var(--color-gold);
    font-weight: 500;
}

.contact-form {
    background: rgba(67, 85, 89, 0.3);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(199, 186, 110, 0.3);
    transition: border-color 0.3s ease;
}

.contact-form:hover {
    border-color: var(--color-gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--color-cream);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(199, 186, 110, 0.4);
    border-radius: 6px;
    background: rgba(67, 85, 89, 0.4);
    color: var(--color-cream);
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(67, 85, 89, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(251, 248, 225, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Map */
.map {
    margin-top: 0;
    padding: 0 30px 50px;
}

.map iframe {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

/* Footer */
/* Footer */
.site-footer {
    background-color: rgba(67, 85, 89, 0.6);
    color: var(--color-cream);
    text-align: center;
    padding: 30px 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.site-footer p {
    margin: 0;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(67, 85, 89, 0.4);
    border: 2px solid rgba(199, 186, 110, 0.3);
}

.footer-social a:hover {
    color: var(--color-cream);
    border-color: var(--color-gold);
    background: rgba(67, 85, 89, 0.6);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoom 0.3s;
    color: transparent;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--color-cream);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--color-gold);
}

.modal-caption {
    margin: auto;
    display: none;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--color-cream);
    padding: 15px 0;
    font-size: 16px;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 20px;
    color: var(--color-cream);
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    background: rgba(95, 116, 107, 0.5);
    border-radius: 5px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(95, 116, 107, 0.8);
    color: var(--color-gold);
}

.gallery-grid img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-grid img:hover {
    opacity: 0.85;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-cream);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 62px;
    }
    
    h2 {
        font-size: 46px;
    }
    
    .hero h1 {
        font-size: 76px;
    }
    
    .packages-grid,
    .lodging-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
        transition: background-color 0.6s ease, box-shadow 0.6s ease;
        height: 90px;
        box-sizing: border-box;
    }
    
    .site-header.menu-open {
        background-color: var(--color-slate);
        box-shadow: none !important;
    }
    
    .site-header .container {
        justify-content: flex-start;
        position: relative;
        align-items: center;
        height: 100%;
    }
    
    .logo {
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .container {
        padding: 0 18px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .logo img {
        width: 240px;
    }
    
    .main-nav {
        display: flex;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--color-slate);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
        margin-top: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: center;
    }
    
    .main-nav li {
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        padding: 18px 30px;
        border-radius: 0;
        text-align: center;
    }
    
    .main-nav.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-social {
        display: flex;
        margin-left: 0;
        margin-top: 15px;
        gap: 10px;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(90deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        transform: rotate(90deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        opacity: 0;
    }
    
    .hero {
        padding: 180px 0 100px;
    }
    
    .hero-content {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 15px;
        max-width: 90%;
        text-align: center;
    }
    
    h2 {
        font-size: 38px;
    }
    
    h3 {
        font-size: 30px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .packages-grid,
    .lodging-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }

    .packages-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .gallery,
    .faq,
    .contact,
    .map,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .map {
        padding-top: 0;
        padding-bottom: 50px;
    }
    
    .package-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 25px 20px;
        box-sizing: border-box;
        box-shadow: none;
    }

    .package-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .lodging-content,
    .attractions-content {
        flex-direction: column;
    }
    
    .lodging-text h1,
    .attractions-text h1 {
        text-align: center !important;
    }
    
    .lodging-image,
    .attractions-image {
        display: none;
    }
    
    .lodging {
        padding-bottom: 0;
    }
    
    .attractions {
        padding-top: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        display: inline-flex;
        margin: 0 auto 40px;
    }
    
    .contact-info-item {
        align-items: flex-start;
        width: 100%;
        text-align: left;
    }
    
    .contact-info-item h5,
    .contact-info-item p {
        text-align: left;
    }
    
    .contact {
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .other-events ul {
        columns: 1;
    }
    
    .gallery-grid {
        column-count: 2;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 240px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .package-card,
    .lodging-item,
    .attraction-item {
        padding: 30px 25px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
}
