/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ivory: #fdf8f0;
    --light-pink: #fce4ec;
    --lavender: #e8d5f2;
    --champagne: #f8e9d7;
    --gold: #d4af37;
    --rose: #f3c5c5;
    --dusty-rose: #C654A0;
    --soft-purple: #b19cd9;
    --shadow: rgba(212, 175, 55, 0.15);
    --text-primary: #4a4a4a;
    --text-secondary: #666;
}

html,body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--ivory);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--dusty-rose), var(--soft-purple));
    border-radius: 20px;
}

/* Floating Hearts Animation */
@keyframes floatHearts {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg);
    }
}

.floating-heart {
    position: fixed;
    color: var(--rose);
    font-size: 20px;
    pointer-events: none;
    z-index: 1000;
    animation: floatHearts 15s linear infinite;
}

h1, h2, h3 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--dusty-rose);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    font-weight: 700;
    color: var(--dusty-rose);
    text-shadow: 0 0 10px var(--shadow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: var(--light-pink);
    color: var(--dusty-rose);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dusty-rose);
    border-radius: 5px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px; /* Account for fixed header */
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--shadow);
    animation: glow 2s ease-in-out infinite alternate;
    color: #aa6c84;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--shadow), 0 0 30px var(--shadow);
    }
    to {
        text-shadow: 0 0 30px var(--shadow), 0 0 40px var(--shadow), 0 0 50px var(--rose);
    }
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 30px;
    color: black;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: clamp(12px, 3vw, 15px) clamp(25px, 5vw, 35px);
    background: linear-gradient(135deg, var(--rose), var(--dusty-rose));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

/* About Section */
.about {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: var(--ivory);
}

.section-title {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 15vw, 100px);
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--lavender));
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.about-swiper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--dusty-rose);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.about-text {
    padding: 0;
}

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
    color: var(--dusty-rose);
    text-align: center;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: center;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--light-pink);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.feature-icon {
    color: var(--dusty-rose);
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, var(--light-pink), var(--lavender));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 165, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 25px;
}

/* Booking Section */
.booking {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: var(--ivory);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.booking-form {
    background: white;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dusty-rose);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-pink);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--dusty-rose);
    box-shadow: 0 0 0 3px var(--shadow);
}

.booking-info {
    padding: clamp(20px, 4vw, 40px);
}

.booking-info h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
    color: var(--dusty-rose);
}

.booking-info p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-info {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dusty-rose);
}

/* Contact Section */
.contact {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, var(--lavender), var(--champagne));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 60px);
}

.contact-form, .contact-info-card {
    background: white;
    padding: clamp(20px, 4vw, 40px);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Footer */
footer {
    background-color: var(--light-pink);
    padding: clamp(30px, 5vw, 50px) 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 25px;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    color: var(--dusty-rose);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.social-link {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dusty-rose);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--dusty-rose);
    color: white;
}

.copyright {
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 25px;
    padding: 12px 0;
    letter-spacing: 0.03em;
}

.copyright a {
    color: var(--dusty-rose);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--soft-purple);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    max-width: 90%;
}

.success-message.active {
    opacity: 1;
    pointer-events: all;
}

.success-icon {
    font-size: 50px;
    color: var(--dusty-rose);
    margin-bottom: 15px;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dusty-rose);
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.success-message button {
    padding: 10px 25px;
    background: var(--dusty-rose);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.success-message button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (min-width: 768px) {
    .about-content, 
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-text,
    .booking-info {
        padding: 20px;
    }
    
    .about-text h3,
    .about-text p {
        text-align: left;
    }
    
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .nav-links {
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .nav-links {
        gap: 30px;
    }
    
    .gallery-grid {
        gap: 30px;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .section-title h2::after {
        width: 100px;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--ivory);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
}