/*
 * JJ Tata Wedding - Main Styles
 * Christmas Wedding Theme for Souta & Jutamanee
 * Color Palette: Crimson Red, Maroon, Forest Green, Gold
 */

/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    /* Color Palette */
    --color-primary: #8B1538;
    --color-primary-dark: #6B0F2A;
    --color-secondary: #722F37;
    --color-accent: #DC143C;
    --color-green: #0F4C3A;
    --color-green-light: #1B4D3E;
    --color-gold: #D4AF37;
    --color-gold-light: #FFD700;
    --color-cream: #FFF8F0;
    --color-white: #FFFFFF;
    --color-dark: #2C1810;
    --color-text: #3A3A3A;
    --color-text-light: #6A6A6A;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--color-cream);
    scroll-behavior: smooth;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body.jj-wedding-page {
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

/* ========================================
   Snowfall Canvas
======================================== */
#snowfall-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ========================================
   Navigation
======================================== */
.wedding-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(139, 21, 56, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.wedding-nav.scrolled {
    background: rgba(107, 15, 42, 0.08);
    box-shadow: var(--shadow-lg);
}

.wedding-nav.menu-open {
    background: rgba(107, 15, 42, 0.98) !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .couple-initials {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--color-gold-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-light);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary-dark), #1a0a0f);
    z-index: 2;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
}

.hero-decoration-left {
    top: 20%;
    left: 5%;
}

.hero-decoration-right {
    bottom: 20%;
    right: 5%;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 8rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-container {
    margin-bottom: 3rem;
}

.invitation-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.invitation-line1,
.invitation-line2 {
    display: inline;
}

.hero-names {
    margin: 2rem 0;
}

.bride-name,
.groom-name {
    font-family: var(--font-script);
    font-size: 5rem;
    color: var(--color-gold-light);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.name-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.name-divider span {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-celebrate {
    margin: 2rem 0;
    padding: 1rem 0;
}

.celebrate-text {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-cream);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-date {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.wedding-date-main {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold-light);
    margin: 1rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.wedding-day {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0.5rem 0;
}

.wedding-time {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    color: var(--color-cream);
    letter-spacing: 2px;
    margin-top: 1rem;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.location-text {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    color: var(--color-white);
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Countdown */
.countdown-container {
    margin: 4rem 0;
}

.countdown-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-cream);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

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

.countdown-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 3rem;
}

.btn-hero {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-hero::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;
}

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

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}

.hero-scroll-indicator p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

/* ========================================
   Section Common Styles
======================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* Section-container สำหรับ wedding color palette */
#color-palette .section-container {
    padding: 2rem;
    padding-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-ornament {
    margin: 1rem 0;
}

.section-ornament i {
    font-size: 2rem;
    color: var(--color-gold);
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin: 1rem 0;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* ========================================
   Story Section
======================================== */
.story-section {
    background: linear-gradient(to bottom, var(--color-cream), var(--color-white));
    position: relative;
    overflow: hidden;
}

.story-content-redesign {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse > * {
    direction: ltr;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth);
}

.story-card:hover .story-image-wrapper img {
    transform: scale(1.05);
}

.story-frame {
    position: absolute;
    top: -15px;
    right: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    pointer-events: none;
    transition: all var(--transition-smooth);
}

.story-card:hover .story-frame {
    top: -20px;
    right: -20px;
}

.story-text-wrapper {
    padding: 2rem;
    position: relative;
}

.story-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -2rem;
    left: 0;
    line-height: 1;
}

.story-heading {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.story-description {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--color-text);
}

/* Story description mobile - no margin bottom */
@media (max-width: 768px) {
    .story-description {
        margin-bottom: 0;
    }
}

.story-decorations {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.1;
    pointer-events: none;
}

.decoration-items {
    width: 300px;
    height: auto;
}

/* ========================================
   Details Section
======================================== */
.details-section {
    background: linear-gradient(135deg, rgba(107, 15, 42, 0.95) 0%, rgba(15, 76, 58, 0.95) 100%),
                url('https://jnista.com/wp-content/uploads/2025/12/74325.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    position: relative;
}

.details-section .section-title {
    color: var(--color-white);
}

.details-section .section-subtitle {
    color: var(--color-cream);
}

/* Invitation Card Display */
.invitation-card-display {
    max-width: 700px;
    margin: 3rem auto 5rem;
}

.invitation-card-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 5px solid var(--color-gold);
}

.invitation-card-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Theme Info Redesigned */
.theme-info-redesign {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    margin-top: 4rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.theme-title {
    font-size: 2.5rem;
    color: var(--color-gold-light);
    margin-bottom: 3rem;
}

.theme-colors-redesign {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.color-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
}

.color-circle:hover {
    transform: scale(1.15) rotate(360deg);
}

.color-label {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-description-redesign {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--color-cream);
    max-width: 900px;
    margin: 2rem auto 0;
}

/* ========================================
   Gallery Section - Card Slider
======================================== */
.gallery-section {
    background: linear-gradient(rgba(255, 255, 240, 0.95), rgba(255, 255, 240, 0.95)),
                url('https://jnista.com/wp-content/uploads/2025/12/18189878_77-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    padding: 6rem 0;
}

.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
}

.gallery-slider {
    display: flex;
    gap: 3rem;
    animation: slideLeft 40s linear infinite;
    will-change: transform;
}

.gallery-slider:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-600px * 7 - 3rem * 7));
    }
}

.gallery-card {
    flex-shrink: 0;
    width: 600px;
    perspective: 1000px;
}

.gallery-card-inner {
    width: 100%;
    height: 700px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--color-gold);
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-card:hover .gallery-card-inner {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.5);
    border-color: var(--color-gold-light);
}

.gallery-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-inner img {
    transform: scale(1.08);
}

/* ========================================
   RSVP Section
======================================== */
.rsvp-section {
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}

.rsvp-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.rsvp-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.rsvp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.85), rgba(15, 76, 58, 0.85));
    z-index: 2;
}

.rsvp-section .section-container {
    position: relative;
    z-index: 3;
}

.rsvp-section .section-title {
    color: var(--color-white);
}

.rsvp-section .section-subtitle {
    color: var(--color-cream);
}

.rsvp-content-redesign {
    max-width: 900px;
    margin: 0 auto;
}

.rsvp-message-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.4);
    margin-bottom: 4rem;
}

.rsvp-quote {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--color-gold-light);
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.rsvp-text-main {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.rsvp-cta-redesign {
    text-align: center;
}

.btn-rsvp-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    background-size: 200% auto;
    color: var(--color-dark);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6),
                inset 0 -5px 20px rgba(0, 0, 0, 0.1),
                inset 0 5px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
}

.btn-rsvp-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    animation: btnGlow 3s ease-in-out infinite;
    opacity: 0;
}

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

.btn-rsvp-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: btnShine2 2.5s infinite;
}

@keyframes btnShine2 {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.btn-rsvp-new:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.8),
                inset 0 -5px 20px rgba(0, 0, 0, 0.15),
                inset 0 5px 25px rgba(255, 255, 255, 0.5);
    background-position: right center;
    border-color: rgba(255, 215, 0, 0.8);
}

.btn-rsvp-new:active {
    transform: translateY(-8px) scale(1.02);
}

.btn-rsvp-text {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rsvp-deadline {
    margin-top: 2rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-gold-light);
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Location Section
======================================== */
.location-section {
    background: var(--color-cream);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.location-info {
    padding: 2rem;
}

.location-name {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.location-address i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.3rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--color-green);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    background: var(--color-green);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
}

/* ========================================
   Buttons
======================================== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ========================================
   Footer
======================================== */
.wedding-footer {
    background: linear-gradient(to bottom, var(--color-primary-dark), #1a0a0f);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-decorative i {
    font-size: 2.5rem;
    color: var(--color-gold);
}

.couple-names-footer {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
}

.wedding-date-footer {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--color-cream);
    letter-spacing: 2px;
}

.footer-hashtag {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-top: 1rem;
    letter-spacing: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-icons i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* Powered By OneBiz in Footer */
.powered-by-onebiz-footer {
    display: flex;
    align-items: center;
}

.powered-by-onebiz-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powered-by-onebiz-footer a:hover {
    transform: translateY(-2px);
}

.powered-by-onebiz-footer span {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.powered-by-onebiz-footer img {
    height: 24px;
    width: auto;
}

/* Mobile - Hide powered by onebiz in footer */
@media (max-width: 768px) {
    .powered-by-onebiz-footer {
        display: none !important;
    }
}

/* ========================================
   Mobile Sticky Bar
======================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(139, 21, 56, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.sticky-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.6rem 0.3rem;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
}

.sticky-nav-item i {
    font-size: 1.3rem;
    transition: all var(--transition-fast);
}

.sticky-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sticky-nav-item.active {
    color: var(--color-gold-light);
}

.sticky-nav-center {
    flex: 1.5;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    margin: 0 0.5rem;
    border-radius: 15px;
    padding: 0.8rem 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    font-weight: 700;
    font-size: 0.75rem;
}

.sticky-nav-center i {
    font-size: 1.5rem;
}

.sticky-nav-center:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
}

.mobile-sticky-bar {
    display: flex;
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 35px;
    height: 75px;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .section-container {
        padding: 4rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .bride-name,
    .groom-name {
        font-size: 4rem;
    }

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

    .story-card {
        gap: 2rem;
    }

    .story-image-wrapper img {
        height: 500px;
    }

    .gallery-card {
        width: 500px;
    }

    .gallery-card-inner {
        height: 600px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(107, 15, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: left var(--transition-smooth);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-content {
        padding: 6rem 1.5rem 2rem;
    }

    /* Mobile: Split invitation text into 2 lines */
    .invitation-line1,
    .invitation-line2 {
        display: block;
    }

    .invitation-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .bride-name,
    .groom-name {
        font-size: 3rem;
    }

    .wedding-date-main {
        font-size: 2rem;
    }

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

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 90px;
        padding: 1.5rem 1rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .story-card,
    .story-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .story-image-wrapper img {
        height: 480px;
    }

    .story-number {
        font-size: 3.5rem;
        top: -1rem;
    }

    .story-heading {
        font-size: 2rem;
    }

    /* Gallery - Mobile optimized */
    .gallery-card {
        width: 350px;
    }

    .gallery-card-inner {
        height: 500px;
        border: 5px solid var(--color-gold);
    }

    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-350px * 7 - 3rem * 7));
        }
    }

    /* Location - Mobile redesign */
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info {
        padding: 1.5rem;
        text-align: center;
    }

    .location-name {
        font-size: 2rem;
    }

    .location-address {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
    }

    .location-features {
        align-items: center;
        margin: 1.5rem 0;
    }

    .feature-item {
        justify-content: center;
    }

    .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto;
    }

    .map-placeholder {
        height: 300px;
    }

    /* RSVP Button Mobile */
    .btn-rsvp-new {
        padding: 1.5rem 3.5rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .bride-name,
    .groom-name {
        font-size: 2.5rem;
    }

    .name-divider span {
        font-size: 2.5rem;
    }

    .wedding-date-main {
        font-size: 1.8rem;
    }

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

    .invitation-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-large,
    .btn-hero {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .story-image-wrapper img {
        height: 410px;
    }

    /* Gallery - Small mobile */
    .gallery-card {
        width: 300px;
    }

    .gallery-card-inner {
        height: 450px;
        border: 4px solid var(--color-gold);
    }

    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 7 - 3rem * 7));
        }
    }

    .rsvp-quote {
        font-size: 1.8rem;
    }

    .rsvp-text-main {
        font-size: 1.1rem;
    }

    .btn-rsvp-new {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .sticky-nav-item {
        font-size: 0.65rem;
    }

    .sticky-nav-item i {
        font-size: 1.1rem;
    }

    .sticky-nav-center {
        font-size: 0.7rem;
    }

    .sticky-nav-center i {
        font-size: 1.3rem;
    }

    .location-name {
        font-size: 1.8rem;
    }

    .location-address {
        font-size: 1rem;
    }
}
/* ========================================
   Wedding Color Palette Section
======================================== */
.wedding-color-palette-section {
    padding: 3rem 0;
    background: linear-gradient(rgba(255, 255, 240, 0.95), rgba(255, 255, 240, 0.95)),
                url('https://jnista.com/wp-content/uploads/2025/12/2149155902.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-title-palette {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle-palette {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.color-palette-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.color-swatch-palette {
    text-align: center;
}

.color-circle-palette {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.color-swatch-palette:hover .color-circle-palette {
    transform: scale(1.1);
}

.color-name-palette {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

/* ========================================
   Powered By OneBiz
======================================== */
.powered-by-onebiz {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.powered-by-onebiz:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.powered-by-onebiz a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.powered-by-onebiz span {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--color-text);
    font-weight: 500;
}

.powered-by-onebiz img {
    height: 20px;
    width: auto;
}

/* ========================================
   New Directions Button
======================================== */
.btn-directions-new {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-directions-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-directions-new:hover::before {
    width: 300px;
    height: 300px;
}

.btn-directions-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

/* ========================================
   Mobile Responsive Updates
======================================== */
@media (max-width: 768px) {
    .section-title-palette {
        font-size: 2.5rem;
    }
    
    .section-subtitle-palette {
        font-size: 1rem;
    }
    
    .color-palette-display {
        gap: 2rem;
    }
    
    .color-circle-palette {
        width: 80px;
        height: 80px;
    }
    
    .color-name-palette {
        font-size: 0.9rem;
    }
    
    .powered-by-onebiz {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
    }
    
    .powered-by-onebiz span {
        font-size: 11px;
    }
    
    .powered-by-onebiz img {
        height: 16px;
    }
    
    /* Updated Scroll to Top Button for Mobile */
    .scroll-to-top.visible {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .color-palette-display {
        gap: 1.5rem;
    }
    
    .color-circle-palette {
        width: 70px;
        height: 70px;
    }
    
    .powered-by-onebiz {
        bottom: 80px;
    }
}

/* ========================================
   Updated Global H2 Title Styling - Different Script Font
======================================== */
.section-title {
    font-family: 'Dancing Script', cursive !important;
    font-size: 4.5rem !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

/* Join Our Celebration - Yellow Color */
#rsvp .section-title {
    color: #FFD700 !important;
}

/* Wedding Details - Yellow Color */
#details .section-title {
    color: #FFD700 !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 3rem !important;
    }
}

@media (max-width: 390px) {
    .section-title {
        font-size: 2.5rem !important;
    }
}

/* ========================================
   Updated Wedding Color Palette Section - Smaller
======================================== */
.wedding-color-palette-section {
    padding: 1rem 0 !important;
    background: linear-gradient(rgba(255, 255, 240, 0.95), rgba(255, 255, 240, 0.2)),
                url('https://jnista.com/wp-content/uploads/2025/12/2149155902.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-title-palette {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle-palette {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.color-palette-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.color-swatch-palette {
    text-align: center;
}

.color-circle-palette {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.color-swatch-palette:hover .color-circle-palette {
    transform: scale(1.1);
}

.color-name-palette {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

/* ========================================
   Countdown Mobile Responsive
======================================== */
@media (max-width: 390px) {
    .countdown {
        gap: 0.5rem !important;
    }
    
    .countdown-item {
        min-width: 60px !important;
    }
    
    .countdown-value {
        font-size: 1.8rem !important;
    }
    
    .countdown-label {
        font-size: 0.7rem !important;
    }
}

/* ========================================
   Scroll to Top - Smaller
======================================== */
.scroll-to-top.visible {
    width: 50px !important;
    height: 50px !important;
}

@media (max-width: 768px) {
    .scroll-to-top.visible {
        width: 30px !important;
        height: 30px !important;
    }
    
    .scroll-to-top i {
        font-size: 14px !important;
    }
}

/* ========================================
   Mobile Sticky Bar - Smaller
======================================== */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        height: 50px !important;
        padding: 0.4rem 1rem !important;
    }
    
    .sticky-nav-item {
        font-size: 9px !important;
        padding: 0.3rem 0.5rem !important;
    }
    
    .sticky-nav-item i {
        font-size: 14px !important;
        margin-bottom: 0.15rem !important;
    }
}

@media (max-width: 390px) {
    .mobile-sticky-bar {
        height: 45px !important;
        padding: 0.3rem 0.8rem !important;
    }
    
    .sticky-nav-item {
        font-size: 8px !important;
        padding: 0.25rem 0.4rem !important;
    }
    
    .sticky-nav-item i {
        font-size: 12px !important;
    }
}

/* ========================================
   Location Section - Fix Mobile Overflow
======================================== */
.location-section {
    overflow-x: hidden !important;
}

.location-content {
    overflow-x: hidden !important;
}

.location-map {
    overflow-x: hidden !important;
}

.location-map iframe {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .location-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .location-content {
        padding: 0 !important;
    }
    
    .location-info {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .location-map {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .location-map iframe {
        border-radius: 0 !important;
    }
}

/* ========================================
   Gallery Mobile - Hide Header
======================================== */
@media (max-width: 768px) {
    .section-header-ourmoment {
        display: none !important;
    }
}

/* ========================================
   Updated Powered By OneBiz (Footer)
======================================== */
.powered-by-onebiz-footer {
    text-align: right;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.05);
}

.powered-by-onebiz-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powered-by-onebiz-footer a:hover {
    transform: translateY(-2px);
}

.powered-by-onebiz-footer span {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.powered-by-onebiz-footer img {
    height: 24px;
    width: auto;
}

/* Mobile - Hide in footer */
@media (max-width: 768px) {
    .powered-by-onebiz-footer {
        display: none !important;
    }
}

/* ========================================
   Mobile Menu Powered By
======================================== */
.mobile-menu-powered {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.mobile-menu-powered a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.mobile-menu-powered span {
    font-family: var(--font-sans);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.mobile-menu-powered img {
    height: 20px;
    width: auto;
}

/* Desktop - Hide in menu */
@media (min-width: 769px) {
    .mobile-menu-powered {
        display: none !important;
    }
}

/* ========================================
   Updated Directions Button
======================================== */
.btn-directions-new {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-directions-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-directions-new:hover::before {
    width: 300px;
    height: 300px;
}

.btn-directions-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

/* ========================================
   Mobile Responsive Updates
======================================== */
@media (max-width: 768px) {
    .section-title-palette {
        font-size: 2.2rem;
    }
    
    .section-subtitle-palette {
        font-size: 0.85rem;
    }
    
    .color-palette-display {
        gap: 1.5rem;
    }
    
    .color-circle-palette {
        width: 70px;
        height: 70px;
    }
    
    .color-name-palette {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .wedding-color-palette-section {
        padding: 1rem 0;
    }
    
    .color-palette-display {
        gap: 1rem;
    }
    
    .color-circle-palette {
        width: 60px;
        height: 60px;
    }
    
    .color-name-palette {
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    .color-circle-palette {
        width: 55px;
        height: 55px;
    }
    
    .color-name-palette {
        font-size: 0.9rem;
    }
}