/*
Theme Name: MAYBE Wedding
Theme URI: https://maybewedding.vn
Author: MAYBE Studio
Author URI: https://maybewedding.vn
Description: Giao diện độc quyền thiết kế theo phong cách Liquid Glass siêu sang trọng dành riêng cho MAYBE Wedding.
Version: 1.0.0
Text Domain: maybe-wedding
*/

/* Reset & Variables */
:root {
    --primary: #c9a07a;
    --primary-dark: #b88a5f;
    --text-dark: #333;
    --bg-light: #fafafa;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

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

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

/* Các đoạn CSS sẽ được gọi riêng từ assets/css/main.css để cấu trúc gọn hơn */
:root {
    --primary: #c9a07a;
    --secondary: #2d3436;
    --bg-light: #f9f9f9;
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1a1a1a;
    --font-serif: 'Bodoni Moda', serif;
    --font-sans: 'Inter', sans-serif;
}

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

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

/* Header & Nav */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.scrolled {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary);
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.cta-btn {
    background: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s !important;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 160, 122, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
    animation: zoom-in-out 20s infinite alternate;
}

.hero-slideshow .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

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

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.slide-4 {
    background-image: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 em {
    font-weight: 300;
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
    transform: scale(1.05);
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.music-control:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.music-waves {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 15px;
}

.music-waves span {
    width: 3px;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

.music-waves.active span {
    animation: wave-anim 1s infinite ease-in-out;
}

.music-waves.active span:nth-child(2) {
    animation-delay: 0.2s;
}

.music-waves.active span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave-anim {

    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 15px;
    }
}

.music-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Brand Story Section V2 (Minimalist) */
.brand-story-v2 {
    padding: 100px 5% 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.intro-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
}

.intro-content h1 span {
    color: var(--primary);
    font-style: italic;
    font-weight: 300;
}

.story-divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 30px 0;
}

.main-desc {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.minimal-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.stat-circle {
    text-align: center;
}

.stat-circle strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.stat-circle p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    font-weight: 500;
}

.cta-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

@media (max-width: 1024px) {
    .brand-story-v2 {
        padding: 100px 5%;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .minimal-stats {
        flex-direction: column;
        gap: 30px;
    }

    .intro-content h1 {
        font-size: 2.5rem;
    }
}

/* Wedding Dresses Section */
.dresses-section {
    padding: 50px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.dress-liquid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.dress-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dress-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.4));
    z-index: 1;
    pointer-events: none;
}

.dress-info {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transition: all 0.5s ease;
    text-align: center;
}

.dress-info span {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dress-frame:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.dress-frame:hover img {
    transform: scale(1.1);
}

.dress-frame:hover .dress-info {
    bottom: 20px;
}

.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #eee;
    border-radius: 50px;
    transition: all 0.3s;
}

.view-all-link:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(201, 160, 122, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator .line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
}

/* Services */
.services {
    padding: 40px 50px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-title h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

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

.glass-card {
    padding: 50px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.2s ease-out;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.08) !important;
    border-color: var(--primary);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.glass-card:hover::before {
    animation: shimmerLight 0.8s ease-out forwards;
}

@keyframes shimmerLight {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.glass-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.glass-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Free Invitation Banner */
.free-invitation-banner {
    margin: 80px auto 100px;
    max-width: 1200px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(201, 160, 122, 0.2);
}

.banner-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.banner-grid .banner-content {
    padding: 60px;
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-grid .banner-image {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.tag-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(201, 160, 122, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    width: max-content;
}

.banner-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.banner-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.banner-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.banner-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-glow {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(45deg, var(--primary), #e6b981);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(201, 160, 122, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: max-content;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 160, 122, 0.6);
    color: white;
}

.floating-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 900px) {
    .banner-grid {
        flex-direction: column-reverse;
    }

    .banner-grid .banner-content {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .banner-image {
        width: 100%;
        min-height: 300px;
    }

    .floating-badge {
        left: 20px;
        top: 20px;
    }
}

/* Footer */
footer {
    padding: 100px 50px 50px;
    background: #fdfdfd;
}

.footer-glass {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
    align-items: start;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-info h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 22px;
    height: 22px;
}

.footer-contact h4,
.footer-map h4,
.footer-ecosystem h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.ecosystem-list {
    list-style: none;
    padding: 0;
}

.ecosystem-list li {
    margin-bottom: 16px;
}

.ecosystem-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.85;
}

.ecosystem-list a::before {
    content: "⟶";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.ecosystem-list a:hover {
    color: var(--primary);
    opacity: 1;
}

.ecosystem-list a:hover::before {
    transform: translateX(5px);
}

.footer-info h3 span {
    color: var(--primary);
    font-weight: 300;
}

.footer-info p {
    color: #888;
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Page Header for Subpages */
.page-header {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f5f5f5;
    padding-top: 100px;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
}

.page-header p {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Blog Styles */
.blog-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(201, 160, 122, 0.2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
    border: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.article-image {
    height: 240px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 30px;
    flex-grow: 1;
}

.article-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-content p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Post CTA Styles */
.post-cta {
    margin-top: 60px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.post-cta h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.post-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.post-cta .btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(201, 160, 122, 0.3);
}

.post-cta .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(201, 160, 122, 0.4);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .category-filters {
        gap: 10px;
    }

    .post-cta h3 {
        font-size: 1.8rem;
    }

    .post-cta {
        padding: 40px 20px;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo:hover {
    animation: float 2s infinite ease-in-out;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        margin: 0 20px;
    }

    .story-header {
        flex-direction: column;
        gap: 40px;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .feature-image {
        display: none;
    }
}

@media (max-width: 768px) {
    #main-header {
        padding: 20px 30px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .music-control {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
    }

    .music-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Wedding Dresses Grid */
.dress-liquid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
}

.dress-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: #fff;
    cursor: pointer;
}

.dress-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dress-info {
    position: absolute;
    bottom: -60px;
    /* Hidden initially */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Bling Bling Effect */
.glass-overlay {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.dress-frame:hover {
    box-shadow: 0 25px 50px rgba(201, 160, 122, 0.2);
}

.dress-frame:hover img {
    transform: scale(1.08);
}

.dress-frame:hover .dress-info {
    bottom: 30px;
}

.dress-frame:hover .glass-overlay {
    animation: blingBling 1.2s infinite;
}

@keyframes blingBling {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

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

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

.lightbox-content {
    background: white;
    padding: 0;
    border-radius: 16px;
    max-width: 95%;
    width: 1000px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.dress-lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-header {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: white;
    z-index: 10;
}

.lightbox-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin: 0;
}

.lightbox-main-container {
    width: 100%;
    height: 65vh;
    position: relative;
    background: #fafafa;
    overflow: hidden;
}

.lightbox-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.lightbox-main-img.fade {
    opacity: 0;
}

.lightbox-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 15px 20px;
    justify-content: center;
    background: white;
    overflow-x: auto;
}

/* Hide scrollbar for thumbnails if they overflow */
.lightbox-thumbnails::-webkit-scrollbar {
    display: none;
}

.lightbox-thumbnails {
    scrollbar-width: none;
}

.lightbox-thumb {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lightbox-thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(201, 160, 122, 0.3);
}

.lightbox-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
    background: white;
    z-index: 10;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
    font-weight: 300;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Custom Facebook Card */
.custom-fb-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 15px;
    max-width: 340px;
    transition: transform 0.3s;
}

.custom-fb-card:hover {
    transform: translateY(-3px);
}

.fb-cover {
    height: 110px;
    overflow: hidden;
    background: #eee;
}

.fb-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-profile {
    display: flex;
    align-items: center;
    padding: 12px 15px 15px;
    position: relative;
    background: #fff;
}

.fb-profile>img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    top: -27px;
    left: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.fb-info {
    margin-left: 65px;
    flex-grow: 1;
}

.fb-info h5 {
    font-family: var(--font-inter);
    font-size: 1rem;
    margin: 0 0 2px 0;
    color: #1a1a1a;
    font-weight: 600;
}

.fb-info span {
    font-size: 0.75rem;
    color: #666;
    display: block;
}

.fb-btn {
    background: #1877F2;
    color: white !important;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
}

.fb-btn:hover {
    background: #166fe5;
}

.fb-btn svg {
    fill: currentColor;
}