@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #fff7f5;
    --bg-secondary: #fdfbfb;
    --gradient-glow: linear-gradient(135deg, #fbcfe8, #f9a8d4, #fda4af, #fde68a);
    --accent-rose: #f43f5e;
    --accent-gold: #eab308;
    --accent-lavender: #c084fc;
    --accent-ivory: #fef3c7;
    --accent-deep: #7c2d12;
    --text-main: #333333;
    --text-light: #666666;
    
    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(244, 63, 94, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-glow);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--accent-deep);
    font-weight: 600;
}

.script-text {
    font-family: var(--font-script);
    color: var(--accent-rose);
    font-weight: normal;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--accent-deep);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-rose);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(255, 247, 245, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-deep);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient-glow);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--accent-deep);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-glow);
    color: #fff;
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #fde68a, #fda4af, #f9a8d4, #fbcfe8);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(244, 63, 94, 0.3);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-rose);
    color: var(--accent-rose);
}

.btn-outline:hover {
    background: var(--accent-rose);
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/photo-1511285560929-80b456fea0bc.png');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate linear;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,247,245,0.3), rgba(255,247,245,0.9));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    padding-top: 120px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--accent-deep);
}

.hero .script-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    display: block;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Petals Animation Overlay */
#petals-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23f43f5e" opacity="0.6"><path d="M12,2C8,2 4,5 4,9c0,4 8,13 8,13s8-9 8-13C20,5 16,2 12,2z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    animation: fall linear forwards;
}

/* Page Headers */
.page-header {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%; width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(251,207,232,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

/* Cards & Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.venue-card, .blog-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.venue-card:hover, .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.15);
}

.card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.venue-card:hover .card-img-wrapper img, .blog-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--accent-ivory);
    color: var(--accent-deep);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/* Venue Detail */
.venue-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
}
.venue-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.venue-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}
.venue-main {
    padding: 3rem;
}
.venue-sidebar {
    padding: 2rem;
    height: max-content;
    position: sticky;
    top: 100px;
}
.spec-list {
    list-style: none;
    margin-bottom: 2rem;
}
.spec-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--accent-deep);
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-rose);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.2);
    background: rgba(255,255,255,0.9);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Gallery Masonry */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(124, 45, 18, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: var(--glass-shadow);
}

.lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    font-size: 2rem;
    color: var(--accent-deep);
    cursor: pointer;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
    background: #e5e5e5;
}
.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations Utilities */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

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

@keyframes fall {
    0% { transform: translateY(-10vh) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(360deg) scale(1.2); opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
    .venue-detail-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    .venue-detail-content {
        margin-top: -50px;
    }
    .venue-sidebar {
        position: static;
    }
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: rgba(255, 247, 245, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .masonry-grid {
        column-count: 1;
    }
}