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

:root {
    --pastel-pink: #FFD6E8;
    --pastel-lavender: #E6D5FF;
    --pastel-mint: #D4F4DD;
    --pastel-peach: #FFE5D4;
    --pastel-blue: #D4E8FF;
    --pastel-yellow: #FFF4D4;
    --pastel-orange: #FFE8D4;
    --pastel-cyan: #D4F0F4;
    --pastel-teal: #D4EDE8;
    --pastel-coral: #FFD9D4;
    --pastel-lime: #E8F4D4;
    --pastel-purple: #E8D4FF;
    --pastel-maroon: #E8B8C4;
    --logo-maroon: #8B3A4A;
    --beige-bg: #F5F1EB;
    --cream-bg: #FEFCF8;
    --text-dark: #5A5A5A;
    --text-light: #ffffff;
    --card-bg: #FFFEF9;
    --paper-bg: #FEFCF8;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.12);
    --tape-color: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 244, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 232, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 244, 221, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, var(--beige-bg) 0%, rgba(255, 244, 212, 0.3) 20%, rgba(212, 232, 255, 0.25) 40%, rgba(212, 244, 221, 0.3) 60%, rgba(255, 232, 212, 0.25) 80%, var(--beige-bg) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Smooth scrolling for mobile */
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(139, 58, 74, 0.02) 100px, rgba(139, 58, 74, 0.02) 101px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(139, 58, 74, 0.02) 100px, rgba(139, 58, 74, 0.02) 101px);
    pointer-events: none;
    z-index: 0;
}

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

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 244, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 244, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 232, 255, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(245, 241, 235, 0.98) 0%, rgba(255, 254, 249, 0.98) 50%, rgba(245, 241, 235, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 20px rgba(139, 58, 74, 0.12),
        0 0 0 1px rgba(139, 58, 74, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 1000;
    border-bottom: 4px double var(--pastel-teal);
    overflow: visible;
}

/* Duplicate fixed navbar that appears when original is scrolled out */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 244, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 244, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 232, 255, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(245, 241, 235, 0.98) 0%, rgba(255, 254, 249, 0.98) 50%, rgba(245, 241, 235, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 20px rgba(139, 58, 74, 0.12),
        0 0 0 1px rgba(139, 58, 74, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 1000;
    border-bottom: 4px double var(--pastel-teal);
    overflow: visible;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    visibility: hidden;
}

/* Show fixed navbar when scrolled out */
.navbar-fixed.visible {
    visibility: visible;
}

/* Show fixed navbar on hover when hidden */
.navbar-fixed.hover-show {
    transform: translateY(0);
}

/* Hide fixed navbar and hover zone on mobile */
@media (max-width: 600px) {
    .navbar-fixed {
        display: none !important;
    }
    
    .navbar-hover-zone {
        display: none !important;
    }
}

/* Placeholder to prevent layout shift when navbar becomes fixed */
.navbar-placeholder {
    width: 100%;
    display: none;
}

/* Hover zone at top of page to show navbar when scrolled out */
.navbar-hover-zone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 999;
    pointer-events: none;
    background: transparent;
}

.navbar-scrolled-out ~ .navbar-hover-zone,
body:has(.navbar-scrolled-out) .navbar-hover-zone {
    pointer-events: auto;
}


.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pastel-yellow), var(--pastel-cyan), var(--pastel-teal), var(--pastel-orange), var(--pastel-blue), var(--pastel-yellow));
    background-size: 300% 100%;
    animation: gradient-shift 4s ease infinite;
    z-index: 1;
}

.navbar::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 1.2rem;
    opacity: 0.3;
    animation: sparkle-float 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes sparkle-float {
    0%, 100% { transform: translateY(-50%) rotate(15deg) scale(1); opacity: 0.3; }
    50% { transform: translateY(-60%) rotate(20deg) scale(1.2); opacity: 0.5; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--logo-maroon);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    border: 2px dashed rgba(139, 58, 74, 0.2);
    box-shadow: 0 2px 8px rgba(139, 58, 74, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-brand:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(139, 58, 74, 0.15);
    border-color: rgba(139, 58, 74, 0.3);
    background: rgba(255, 255, 255, 0.6);
}

.nav-brand::before {
    content: '📍';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.9rem;
    opacity: 0.6;
    transform: rotate(20deg);
    animation: float-icon 2s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: rotate(20deg) translateY(0); }
    50% { transform: rotate(25deg) translateY(-3px); }
}

.logo-small-nav {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.8;
}

.logo-main-nav {
    font-family: 'Playfair Display', serif;
    font-size: 1em;
    font-weight: 700;
    color: var(--logo-maroon);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 1rem;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu li {
    position: relative;
    overflow: visible;
}

.nav-menu li:first-child a {
    margin-left: 0.5rem;
}

.nav-menu li:last-child a {
    margin-right: 0.5rem;
}

.nav-menu li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--pastel-maroon);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu li:hover::before {
    opacity: 0.6;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    white-space: nowrap;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 244, 212, 0.5));
    border: 2px solid rgba(139, 58, 74, 0.15);
    box-shadow: 
        0 2px 8px rgba(139, 58, 74, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.nav-menu a::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 ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal), var(--pastel-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--logo-maroon);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--pastel-teal);
    box-shadow: 
        0 6px 20px rgba(139, 58, 74, 0.2),
        0 0 0 3px rgba(139, 58, 74, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 212, 0.7));
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover::after {
    opacity: 0.4;
}

.nav-menu a:active {
    transform: translateY(-1px) scale(1.02);
}

/* Hidden Admin Nav Link */
.admin-nav-link {
    opacity: 0.15 !important;
    font-size: 0.75rem !important;
    padding: 0.5rem 0.8rem !important;
    pointer-events: auto;
    transition: opacity 0.2s;
}

.admin-nav-link:hover {
    opacity: 0.4 !important;
    transform: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pastel-yellow) 0%, var(--pastel-cyan) 30%, var(--pastel-teal) 60%, var(--pastel-orange) 100%);
    color: var(--text-dark);
    overflow: hidden;
    padding: 120px 20px 60px;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 244, 212, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 232, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 244, 221, 0.3) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 182, 193, 0.1) 2px, rgba(255, 182, 193, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(221, 160, 221, 0.1) 2px, rgba(221, 160, 221, 0.1) 4px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-section {
    text-align: center;
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(245, 241, 235, 0.9) 0%, rgba(250, 248, 245, 0.95) 50%, rgba(245, 241, 235, 0.9) 100%);
    padding: 3rem 4rem;
    border-radius: 30px;
    border: 4px solid rgba(139, 58, 74, 0.1);
    box-shadow: 
        0 8px 25px rgba(139, 58, 74, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.logo-small {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    display: inline-block;
    line-height: 1;
    letter-spacing: 0.02em;
}

.location-pin {
    position: absolute;
    top: -10px;
    right: -50px;
    transform: rotate(-5deg);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal));
    color: var(--logo-maroon);
    border: 3px solid var(--pastel-teal);
    transform: rotate(-1deg);
    box-shadow: 0 4px 15px rgba(139, 58, 74, 0.15);
}

.cta-button-primary:hover {
    transform: rotate(0deg) translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 58, 74, 0.3);
    background: linear-gradient(135deg, var(--pastel-teal), var(--pastel-cyan));
    border-color: var(--pastel-blue);
}

.cta-button-secondary {
    background: var(--card-bg);
    color: var(--logo-maroon);
    border: 3px dashed var(--pastel-orange);
    transform: rotate(1deg);
}

.cta-button-secondary:hover {
    transform: rotate(0deg) translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 58, 74, 0.2);
    border-color: var(--logo-maroon);
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-orange));
}

/* Hero Photos - Polaroid Stack */
.hero-photos {
    position: relative;
    height: 650px;
    overflow: visible;
    min-width: 400px;
}

.photo-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.polaroid-photo {
    position: absolute;
    background: var(--card-bg);
    padding: 15px 15px 60px;
    border-radius: 4px;
    box-shadow: 
        0 0 0 8px var(--card-bg),
        0 0 0 12px var(--pastel-pink),
        0 10px 30px rgba(139, 58, 74, 0.25);
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.polaroid-photo:hover {
    transform: scale(1.1) !important;
    z-index: 10 !important;
}

.photo-1 {
    width: 180px;
    top: 0;
    left: 0;
    transform: rotate(-12deg);
    z-index: 1;
}

.photo-2 {
    width: 200px;
    top: 50px;
    left: 90px;
    transform: rotate(10deg);
    z-index: 2;
}

.photo-3 {
    width: 170px;
    top: 120px;
    left: 10px;
    transform: rotate(-18deg);
    z-index: 3;
}

.photo-4 {
    width: 190px;
    top: 200px;
    left: 100px;
    transform: rotate(15deg);
    z-index: 4;
}

.photo-5 {
    width: 180px;
    top: 280px;
    left: 20px;
    transform: rotate(-10deg);
    z-index: 5;
}

.stack-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.polaroid-label {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--logo-maroon);
    text-align: center;
    margin-top: 10px;
    transform: rotate(-1deg);
    font-weight: 600;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-star {
    position: absolute;
    font-size: 2rem;
    animation: float-star 4s ease-in-out infinite;
    opacity: 0.7;
}

.star-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.star-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.star-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float-star {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-5px); }
}

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--pastel-pink) 0px, var(--pastel-pink) 10px, transparent 10px, transparent 20px);
    opacity: 0.5;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--logo-maroon);
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(139, 58, 74, 0.1);
}

.section-title::before {
    content: '✨';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 1.5rem;
    opacity: 0.6;
}

.section-title::after {
    content: '✨';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 1.5rem;
    opacity: 0.6;
}

.section-subtitle {
    text-align: center;
    color: #8B7A8B;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

/* Collaborators Marquee Section */
.collaborators-marquee-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 0;
    border-top: 1px solid rgba(139, 58, 74, 0.1);
    border-bottom: 1px solid rgba(139, 58, 74, 0.1);
}

.collaborators-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--logo-maroon);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.collaborators-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.collaborators-marquee {
    width: 100%;
    overflow: hidden;
}

.collaborators-marquee-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    animation: collaborators-scroll 20s linear infinite;
    will-change: transform;
    width: fit-content;
}

.collaborator-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 1.5rem;
    min-width: 0;
}

.collaborator-logo {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    display: block;
}

.moderntequila-logo {
    background: #000000;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.virginiarailway-logo {
    background: #000000 !important;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    min-width: 120px;
    min-height: 60px;
}

@keyframes collaborators-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Want to Collaborate CTA Section */
.collaborate-cta-section {
    background: linear-gradient(135deg, rgba(255, 245, 250, 0.9), rgba(245, 255, 250, 0.9));
    padding: 5rem 0;
    border-top: 2px solid rgba(139, 58, 74, 0.1);
    border-bottom: 2px solid rgba(139, 58, 74, 0.1);
}

.collaborate-cta-content {
    text-align: center;
}

.cta-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--logo-maroon);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-service-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pastel-pink);
}

.cta-service-card.cta-primary {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    border-color: var(--pastel-maroon);
}

.cta-service-card.cta-primary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 58, 74, 0.3);
}

.cta-service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--logo-maroon);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.cta-service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Welcome to Harrisonburg Section */
.welcome-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(212, 232, 255, 0.3) 50%, rgba(255, 244, 212, 0.3) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-yellow);
    border-bottom: 3px dashed var(--pastel-cyan);
}

.welcome-section::before {
    content: '🏔️';
    position: absolute;
    top: 30px;
    left: 8%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-20deg);
}

.welcome-section::after {
    content: '📍';
    position: absolute;
    bottom: 30px;
    right: 8%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(20deg);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.welcome-badge {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--logo-maroon);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    border: 3px dashed var(--pastel-orange);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
    box-shadow: 0 4px 12px rgba(139, 58, 74, 0.15);
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--logo-maroon);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(139, 58, 74, 0.1);
    position: relative;
    display: inline-block;
}

.welcome-title::before {
    content: '✨';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 1.5rem;
    opacity: 0.6;
}

.welcome-title::after {
    content: '✨';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 1.5rem;
    opacity: 0.6;
}

.welcome-tagline {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.9;
}

.welcome-description {
    margin-top: 3rem;
}

.welcome-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border: 3px dashed var(--pastel-teal);
    transform: rotate(-0.3deg);
    box-shadow: 0 4px 15px rgba(139, 58, 74, 0.1);
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--pastel-cyan);
    position: relative;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:nth-child(2) {
    transform: rotate(0.5deg);
    border-color: var(--pastel-orange);
}

.feature-item:nth-child(3) {
    transform: rotate(-0.3deg);
    border-color: var(--pastel-teal);
}

.feature-item:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 58, 74, 0.2);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--pastel-yellow);
    border-radius: 50%;
    opacity: 0.6;
    transform: rotate(15deg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-5deg);
    display: inline-block;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--logo-maroon);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: #8B7A8B;
    line-height: 1.7;
    font-size: 1rem;
}

/* Reels Section */
.reels-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(212, 232, 255, 0.3) 50%, rgba(255, 244, 212, 0.3) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-cyan);
    border-bottom: 3px dashed var(--pastel-yellow);
}

.reels-section::before {
    content: '📹';
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.reels-section::after {
    content: '✨';
    position: absolute;
    bottom: 20px;
    left: 5%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.reel-item {
    position: relative;
    transition: transform 0.3s ease;
}

.reel-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal), var(--pastel-blue));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.reel-item:hover {
    transform: translateY(-5px) rotate(1deg);
}

.reel-item:hover::before {
    opacity: 0.3;
}

.reel-item {
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 9/16;
    position: relative;
    border: 8px solid var(--card-bg);
    padding: 0;
    box-shadow: 
        0 0 0 3px var(--pastel-yellow),
        0 0 0 6px var(--pastel-cyan),
        0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.reel-item:nth-child(2) {
    box-shadow: 
        0 0 0 3px var(--pastel-orange),
        0 0 0 6px var(--pastel-teal),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

.reel-item:nth-child(3) {
    box-shadow: 
        0 0 0 3px var(--pastel-blue),
        0 0 0 6px var(--pastel-lime),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

.reel-item blockquote {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-item:nth-child(even) {
    transform: rotate(1deg);
}

.reel-item:nth-child(3n) {
    transform: rotate(-0.5deg);
}

.reel-item:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.02);
    box-shadow: 
        0 0 0 3px var(--pastel-mint),
        0 0 0 6px var(--pastel-peach),
        0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.reel-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: var(--tape-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.reel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: #8B7A8B;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    border: 2px dashed var(--pastel-purple);
    position: relative;
}

.reel-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reel-placeholder small {
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(135deg, rgba(255, 244, 212, 0.25) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(212, 232, 255, 0.3) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-yellow);
    border-bottom: 3px dashed var(--pastel-blue);
}

.instagram-section::before {
    content: '💫';
    position: absolute;
    top: 25px;
    left: 8%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-25deg);
}

.instagram-section::after {
    content: '🌟';
    position: absolute;
    bottom: 25px;
    right: 8%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(25deg);
}

.instagram-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.instagram-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease;
    border: 4px dashed var(--pastel-lavender);
    position: relative;
    transform: rotate(-0.5deg);
}

.instagram-card::before {
    content: '📌';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    transform: rotate(15deg);
}

.instagram-card:hover {
    transform: translateY(-5px) rotate(0deg);
}

.instagram-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #FF9EC5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    border-radius: 50%;
    border: 3px solid var(--pastel-mint);
    box-shadow: 0 4px 10px rgba(196, 165, 255, 0.3);
}

.instagram-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.instagram-card p {
    color: #8B7A8B;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.instagram-button,
.facebook-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: var(--logo-maroon);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--pastel-maroon);
    width: 100%;
    text-align: center;
}

.facebook-button {
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
}

.email-button {
    background: linear-gradient(135deg, var(--pastel-peach), var(--pastel-yellow));
}

.instagram-button:hover,
.facebook-button:hover,
.email-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-maroon);
}

.instagram-embed {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--pastel-cyan);
    transform: rotate(0.5deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.instagram-embed::before {
    content: '📸';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    transform: rotate(15deg);
    z-index: 1;
    opacity: 0.7;
}

.snapwidget-widget {
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(139, 58, 74, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-embed:hover .snapwidget-widget {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 58, 74, 0.2) !important;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(212, 244, 221, 0.3) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 244, 212, 0.3) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-teal);
    border-bottom: 3px dashed var(--pastel-orange);
}

.about-section::before {
    content: '💖';
    position: absolute;
    top: 30px;
    left: 5%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-20deg);
}

.about-section::after {
    content: '⭐';
    position: absolute;
    bottom: 30px;
    right: 5%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(20deg);
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.owner-card {
    position: relative;
}

.owner-card::before {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transform: rotate(20deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.owner-card:hover::before {
    opacity: 0.8;
    transform: rotate(25deg) scale(1.2);
}

.owner-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid var(--pastel-orange);
    position: relative;
    transform: rotate(-1deg);
}

.owner-card:nth-child(even) {
    transform: rotate(1deg);
    border-color: var(--pastel-cyan);
}

.owner-card:nth-child(3) {
    border-color: var(--pastel-teal);
}

.owner-card::before {
    content: '⭐';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 1.5rem;
    transform: rotate(-20deg);
}

.owner-card:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.owner-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--pastel-pink);
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 4px var(--pastel-mint),
        0 4px 15px rgba(196, 165, 255, 0.3);
    position: relative;
}

.owner-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--tape-color);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.avatar-placeholder {
    font-size: 4rem;
    color: var(--text-light);
}

.owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Adjust owner card photos on main page */
.owner-card:nth-child(1) .owner-photo {
    /* Wynona's photo - move up a little */
    object-position: center 60%;
}

.owner-card:nth-child(2) .owner-photo {
    /* Valentina's photo - perfect, keep at 85% */
    object-position: center 85%;
}

.owner-card:nth-child(3) .owner-photo {
    /* Betty's photo - move up higher */
    object-position: center 90%;
}

.owner-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.owner-bio {
    color: #8B7A8B;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.owner-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.owner-link {
    color: var(--logo-maroon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px dashed var(--pastel-maroon);
    border-radius: 20px;
    display: inline-block;
}

.owner-link:hover {
    background: var(--pastel-maroon);
    color: var(--card-bg);
    transform: translateY(-2px);
}

/* Group Photo Section */
.group-photo-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px dashed var(--pastel-yellow);
    text-align: center;
}

.us-together-badge {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--logo-maroon);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 3px dashed var(--pastel-maroon);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
    box-shadow: 0 4px 12px rgba(139, 58, 74, 0.15);
}

.group-photo-container {
    max-width: 900px;
    margin: 0 auto;
}

.group-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.group-photo-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 4px solid var(--pastel-yellow);
    position: relative;
    transform: rotate(0.5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-photo-card:nth-child(2) {
    border-color: var(--pastel-cyan);
    transform: rotate(-0.5deg);
}

.group-photo-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 12px 40px rgba(139, 58, 74, 0.2);
}

.group-photo-card::before {
    content: '🎉';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    transform: rotate(15deg);
    z-index: 1;
}

.group-photo-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-cyan));
}

.group-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.group-photo-card:hover .group-photo {
    transform: scale(1.05);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: var(--text-dark);
}

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

.photo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--logo-maroon);
}

.group-photo-content {
    padding: 2.5rem;
    text-align: center;
}

.group-photo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.group-photo-caption {
    color: #8B7A8B;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.celebration-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--pastel-orange), var(--pastel-yellow));
    color: var(--logo-maroon);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    border: 3px solid var(--logo-maroon);
    font-family: 'Playfair Display', serif;
}

/* What We Do Section */
.what-we-do-section {
    background: linear-gradient(135deg, rgba(255, 244, 212, 0.4) 0%, rgba(212, 232, 255, 0.3) 50%, rgba(212, 244, 221, 0.3) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-yellow);
    border-bottom: 3px dashed var(--pastel-cyan);
}

.what-we-do-section::before {
    content: '🌟';
    position: absolute;
    top: 30px;
    left: 8%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-20deg);
}

.what-we-do-section::after {
    content: '💫';
    position: absolute;
    bottom: 30px;
    right: 8%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(20deg);
}

.what-we-do-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.what-we-do-badge {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--logo-maroon);
    background: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 3px dashed var(--pastel-orange);
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
    box-shadow: 0 4px 12px rgba(139, 58, 74, 0.15);
}

.what-we-do-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--logo-maroon);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(139, 58, 74, 0.1);
    position: relative;
    display: inline-block;
}

.what-we-do-title::before {
    content: '✨';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 1.5rem;
    opacity: 0.6;
}

.what-we-do-title::after {
    content: '✨';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    font-size: 1.5rem;
    opacity: 0.6;
}

.what-we-do-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.process-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--pastel-cyan);
    position: relative;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:nth-child(2) {
    transform: rotate(0.5deg);
    border-color: var(--pastel-orange);
}

.process-card:nth-child(3) {
    transform: rotate(-0.3deg);
    border-color: var(--pastel-teal);
}

.process-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.03);
    box-shadow: 0 12px 35px rgba(139, 58, 74, 0.2);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--logo-maroon);
    box-shadow: 0 4px 12px rgba(139, 58, 74, 0.2);
    border: 3px solid var(--card-bg);
}

.process-icon {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
    transform: rotate(-5deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon {
    transform: rotate(0deg) scale(1.2);
}

.process-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--logo-maroon);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-card p {
    color: #8B7A8B;
    line-height: 1.7;
    font-size: 1rem;
}

.mission-statement {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border: 3px dashed var(--pastel-teal);
    transform: rotate(-0.3deg);
    box-shadow: 0 4px 15px rgba(139, 58, 74, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Recents Section */
.recents-section {
    background: linear-gradient(135deg, rgba(212, 244, 221, 0.3) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(212, 232, 255, 0.25) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-teal);
    border-bottom: 3px dashed var(--pastel-cyan);
}

.recents-section::before {
    content: '📸';
    position: absolute;
    top: 30px;
    right: 8%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(20deg);
}

.recents-simple {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.recents-simple-card {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px dashed var(--pastel-teal);
    transform: rotate(-0.5deg);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.recents-simple-card::before {
    content: '📌';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    transform: rotate(15deg);
}

.recents-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.recents-simple-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.recents-simple-card p {
    color: #8B7A8B;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-link-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 212, 0.5));
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    border: 3px solid var(--pastel-cyan);
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    box-shadow: var(--shadow);
    position: relative;
    display: block;
}

.social-link-card:nth-child(2) {
    transform: rotate(0.5deg);
    border-color: var(--pastel-orange);
}

.social-link-card:nth-child(3) {
    transform: rotate(-0.3deg);
    border-color: var(--pastel-teal);
}

.social-link-card:hover {
    transform: translateY(-5px) rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-maroon);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 244, 212, 0.7));
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: rotate(-5deg);
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link-card:hover .social-icon {
    transform: rotate(0deg) scale(1.2);
}

.social-link-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--logo-maroon);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.social-link-card p {
    color: #8B7A8B;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Collaboration Packages Section */
.packages-section {
    background: linear-gradient(135deg, rgba(255, 244, 212, 0.4) 0%, rgba(212, 232, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-orange);
    border-bottom: 3px dashed var(--pastel-blue);
}

.packages-section::before {
    content: '💎';
    position: absolute;
    top: 25px;
    right: 8%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(25deg);
}

.packages-section::after {
    content: '🎁';
    position: absolute;
    bottom: 25px;
    left: 8%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(-25deg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px solid var(--pastel-orange);
    position: relative;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.package-card:nth-child(even) {
    transform: rotate(1deg);
    border-color: var(--pastel-cyan);
}

.package-card:nth-child(3) {
    border-color: var(--pastel-teal);
}

.package-card.featured {
    transform: rotate(0deg) scale(1.05);
    border-color: var(--pastel-blue);
    border-width: 5px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(139, 58, 74, 0.2);
}

.package-card::before {
    content: '⭐';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 1.5rem;
    transform: rotate(-20deg);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: var(--logo-maroon);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--pastel-maroon);
}

.package-card.featured .package-badge {
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal));
    color: var(--logo-maroon);
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--logo-maroon);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    min-height: 200px;
}

.package-features li {
    padding: 0.8rem 0;
    color: #8B7A8B;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px dashed var(--pastel-lavender);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--pastel-orange), var(--pastel-yellow));
    color: var(--logo-maroon);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--pastel-orange);
    margin-top: 1.5rem;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-maroon);
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-orange));
    color: var(--logo-maroon);
}

.package-card.featured .package-button {
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal));
    color: var(--logo-maroon);
    border-color: var(--pastel-blue);
}

.package-card.featured .package-button:hover {
    background: linear-gradient(135deg, var(--pastel-teal), var(--pastel-cyan));
    border-color: var(--pastel-blue);
}

.packages-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 3px dashed var(--pastel-teal);
    transform: rotate(0.5deg);
}

.packages-note p {
    color: #8B7A8B;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Packages Navigation */
.packages-navigation {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 0;
}

.nav-section-title {
    font-family: 'Playfair Display', serif;
    color: var(--logo-maroon);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.packages-nav-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-option-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    text-decoration: none;
    color: var(--logo-maroon);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
}

.nav-option-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pastel-pink);
    background: linear-gradient(135deg, rgba(255, 245, 250, 0.8), rgba(245, 255, 250, 0.8));
}

.nav-icon {
    font-size: 2.5rem;
}

.nav-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

/* Website Creation Section */
.website-section {
    background: linear-gradient(135deg, rgba(255, 244, 212, 0.4) 0%, rgba(212, 232, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 100%);
    position: relative;
    padding: 6rem 0;
}

.website-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(139, 58, 74, 0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.website-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(221, 160, 221, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.website-content {
    position: relative;
    z-index: 1;
}

.website-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.website-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: var(--logo-maroon);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.website-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.website-pricing {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.website-maintenance {
    margin-bottom: 4rem;
    text-align: center;
}

.website-maintenance-pricing {
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 0;
}

.website-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* Social Media Management Section */
.social-media-section {
    background: linear-gradient(135deg, rgba(255, 244, 212, 0.4) 0%, rgba(212, 232, 255, 0.3) 50%, rgba(255, 255, 255, 0.4) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-orange);
    border-bottom: 3px dashed var(--pastel-blue);
    overflow: hidden;
}

.social-media-section::before {
    content: '📱';
    position: absolute;
    top: 25px;
    right: 8%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.social-media-section::after {
    content: '✨';
    position: absolute;
    bottom: 25px;
    left: 8%;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.social-media-content {
    position: relative;
    z-index: 1;
}

.social-media-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.social-media-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-cyan));
    color: var(--logo-maroon);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 58, 74, 0.15);
}

.social-media-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.social-media-pricing {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--card-bg);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--pastel-maroon);
    max-width: 400px;
    position: relative;
}

.pricing-card::before {
    content: '💎';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pastel-maroon), var(--pastel-pink));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(139, 58, 74, 0.2);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--logo-maroon);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-inquiry-headline {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    line-height: 1.35;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.website-pricing-inquiry-card {
    max-width: 28rem;
}

.website-pricing-card-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.website-pricing-card-actions .cta-button-primary {
    width: 100%;
    max-width: 20rem;
    text-align: center;
    box-sizing: border-box;
}

.pricing-period {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
}

.pricing-description {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--pastel-lavender);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 58, 74, 0.2);
    border-color: var(--pastel-maroon);
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
    border-color: var(--pastel-cyan);
}

.service-card:nth-child(even):hover {
    transform: rotate(1deg) translateY(-5px);
}

.service-card:nth-child(3n) {
    border-color: var(--pastel-teal);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--logo-maroon);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.feed-examples-section {
    margin: 4rem 0;
    text-align: center;
}

.examples-title {
    color: var(--logo-maroon);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.examples-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.feed-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feed-example-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--pastel-lavender);
    transition: all 0.3s ease;
}

.feed-example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 58, 74, 0.2);
    border-color: var(--pastel-maroon);
}

.feed-example-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

@media (max-width: 768px) {
    .feed-examples-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-title {
        font-size: 1.6rem;
    }
    
    .examples-subtitle {
        font-size: 1rem;
    }
}

.social-media-cta {
    margin-top: 4rem;
}

.cta-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px dashed var(--pastel-maroon);
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h3 {
    color: var(--logo-maroon);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-cyan));
    color: var(--logo-maroon);
    border: 2px solid var(--pastel-blue);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 58, 74, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: var(--logo-maroon);
    border: 2px solid var(--pastel-maroon);
}

.cta-button-secondary:hover {
    background: var(--pastel-maroon);
    color: white;
    transform: translateY(-2px);
}

/* Collaboration Section */
.collab-section {
    background: linear-gradient(135deg, rgba(212, 232, 255, 0.3) 0%, rgba(255, 244, 212, 0.35) 50%, rgba(212, 244, 221, 0.25) 100%);
    position: relative;
    padding: 6rem 0;
    border-top: 3px dashed var(--pastel-cyan);
    border-bottom: 3px dashed var(--pastel-lime);
}

.collab-section::before {
    content: '💌';
    position: absolute;
    top: 30px;
    right: 10%;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(30deg);
}

.collab-section::after {
    content: '🤝';
    position: absolute;
    bottom: 30px;
    left: 10%;
    font-size: 2.5rem;
    opacity: 0.1;
    transform: rotate(-30deg);
}

.collab-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.collab-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 4px dashed var(--pastel-lime);
    transform: rotate(-0.5deg);
    position: relative;
}

.collab-card::before {
    content: '💌';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    transform: rotate(-15deg);
}

.collab-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.collab-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.collab-card p {
    color: #8B7A8B;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.collab-email-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal));
    color: var(--logo-maroon);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--pastel-teal);
    box-shadow: var(--shadow);
}

.collab-email-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-maroon);
}

.collab-form-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--pastel-blue);
    transform: rotate(0.5deg);
    position: relative;
}

.collab-form-card::before {
    content: '📝';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    transform: rotate(15deg);
}

.collab-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.collab-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px dashed var(--pastel-lavender);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-maroon);
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(232, 184, 196, 0.2);
}

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

.view-packages-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--pastel-maroon);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.view-packages-link:hover {
    color: var(--logo-maroon);
    text-decoration: underline;
    transform: translateX(3px);
}

.collab-submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-cyan));
    color: var(--logo-maroon);
    border: 2px solid var(--pastel-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-family: 'Poppins', sans-serif;
}

.collab-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-maroon);
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-blue));
    color: var(--logo-maroon);
}

/* Social Media Management Popup */
.social-media-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.popup-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 58, 74, 0.3);
    border: 3px solid var(--pastel-maroon);
    position: relative;
    max-width: 500px;
    width: 90%;
    text-align: center;
    z-index: 10001;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--pastel-lavender);
    color: var(--logo-maroon);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.popup-content h3 {
    color: var(--logo-maroon);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.popup-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.popup-note {
    color: var(--pastel-maroon);
    font-weight: 600;
    font-style: italic;
    margin-top: 1rem;
}

.popup-button {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-cyan));
    color: var(--logo-maroon);
    border: 2px solid var(--pastel-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 58, 74, 0.3);
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-blue));
}

/* Team Member Page */
.team-member-section {
    background: transparent;
    min-height: 100vh;
    padding: 5rem 0;
}

.team-member-container {
    max-width: 800px;
    margin: 0 auto;
}

.team-member-card {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--pastel-pink);
    position: relative;
    transform: rotate(-0.5deg);
}

.team-member-card::before {
    content: '⭐';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    transform: rotate(-20deg);
}

.team-member-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--pastel-pink);
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 4px var(--pastel-mint),
        0 4px 15px rgba(196, 165, 255, 0.3);
    position: relative;
}

.team-member-avatar img,
.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Diary/Journal Style */
.diary-card {
    background: var(--paper-bg);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    box-shadow: 
        0 0 0 4px var(--pastel-pink),
        0 0 0 8px var(--pastel-lavender),
        0 12px 30px rgba(139, 58, 74, 0.15);
    border: 4px solid var(--pastel-lavender);
    position: relative;
    max-width: 850px;
}

/* Wynona's Diary - Electric Blue/Burple */
.diary-wynona {
    border: 4px solid #4169E1;
    box-shadow: 
        0 0 0 4px #87CEEB,
        0 0 0 8px #4169E1,
        0 12px 30px rgba(65, 105, 225, 0.2);
}

/* Valentina's Diary - Pink */
.diary-valentina {
    border: 4px solid #FFB6C1;
    box-shadow: 
        0 0 0 4px #FFD6E8,
        0 0 0 8px #FFB6C1,
        0 12px 30px rgba(255, 182, 193, 0.2);
}

/* Betty's Diary - Purple */
.diary-betty {
    border: 4px solid #9370DB;
    box-shadow: 
        0 0 0 4px #DDA0DD,
        0 0 0 8px #9370DB,
        0 12px 30px rgba(147, 112, 219, 0.2);
}

.diary-card {
    margin: 0 auto;
    background-image: 
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            rgba(139, 58, 74, 0.05) 31px,
            rgba(139, 58, 74, 0.05) 32px
        ),
        radial-gradient(circle at 90% 10%, rgba(255, 182, 193, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(221, 160, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 244, 212, 0.1) 0%, transparent 70%);
    transform: rotate(-0.5deg);
    overflow: visible;
}

/* Tape effect and notebook line */
.diary-card::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(139, 58, 74, 0.1);
    z-index: 1;
}

.diary-card::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.diary-card .diary-sticker-1 {
    top: 3%;
    right: 5%;
}

.diary-card .diary-sticker-2 {
    top: 12%;
    left: 3%;
}

.diary-card .diary-sticker-3 {
    bottom: 18%;
    right: 3%;
}

.diary-card .diary-sticker-4 {
    bottom: 8%;
    left: 5%;
}

.diary-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 3px dashed var(--pastel-lavender);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.diary-header::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 60px;
    height: 20px;
    background: var(--pastel-yellow);
    border-radius: 10px;
    opacity: 0.6;
    transform: rotate(-5deg);
}

.diary-header::after {
    content: '💫';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 1.3rem;
    transform: rotate(25deg);
    z-index: 2;
}

.diary-avatar {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    overflow: visible;
    border: 15px solid var(--card-bg);
    flex-shrink: 0;
    box-shadow: 
        0 0 0 8px var(--pastel-pink),
        0 0 0 16px var(--pastel-lavender),
        0 20px 45px rgba(139, 58, 74, 0.35);
    background: var(--card-bg);
    padding: 8px;
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.diary-avatar:hover {
    transform: rotate(0deg) scale(1.05);
}

.diary-avatar::before {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 1.2rem;
    transform: rotate(15deg);
    z-index: 1;
}

.diary-avatar::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: var(--card-bg);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.diary-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Adjust photo positioning within frames - move photos up */
.diary-wynona .diary-photo {
    object-position: center 60%;
}

.diary-valentina .diary-photo {
    object-position: center 85%;
}

.diary-betty .diary-photo {
    object-position: center 87%;
}

.diary-name-tagline {
    flex: 0 1 auto;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diary-name {
    font-family: 'Caveat', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--logo-maroon);
    margin-bottom: 0.5rem;
    transform: rotate(-1deg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    display: inline-block;
}

.diary-name::after {
    content: '💖';
    position: absolute;
    top: -5px;
    right: -25px;
    font-size: 1.2rem;
    transform: rotate(20deg);
}

.diary-tagline {
    font-family: 'Kalam', cursive;
    font-size: 1.15rem;
    color: #8B7A8B;
    font-style: italic;
    transform: rotate(0.5deg);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.diary-tagline::before {
    content: '~';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--pastel-maroon);
    transform: rotate(-10deg);
}

.diary-entry {
    margin-top: 2rem;
}

.diary-section {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    border-left: 4px solid var(--pastel-pink);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
}

.diary-section:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 58, 74, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.diary-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--pastel-pink), var(--pastel-lavender), var(--pastel-mint));
    border-radius: 2px 0 0 2px;
}

.diary-section::after {
    content: '💫';
    position: absolute;
    top: -12px;
    right: 25px;
    font-size: 1rem;
    opacity: 0.7;
    transform: rotate(20deg);
    z-index: 1;
}

.diary-emoji {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    transform: rotate(-3deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    border: 2px dashed var(--pastel-lavender);
    position: relative;
    z-index: 1;
}

.diary-emoji::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: var(--pastel-yellow);
    border-radius: 50%;
    opacity: 0.7;
}

.diary-content {
    flex: 1;
    padding-left: 0.5rem;
}

.diary-question {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--logo-maroon);
    margin-bottom: 1rem;
    transform: rotate(-0.8deg);
    line-height: 1.3;
    position: relative;
    display: inline-block;
    padding-right: 1rem;
}

.diary-question::after {
    content: '?';
    position: absolute;
    right: -5px;
    color: var(--pastel-maroon);
    transform: rotate(15deg) scale(1.2);
}

.diary-answer {
    font-family: 'Kalam', cursive;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.9;
    transform: rotate(0.4deg);
    margin-left: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    border-left: 3px solid var(--pastel-mint);
    position: relative;
}

.diary-answer::before {
    content: '"';
    position: absolute;
    left: -8px;
    top: -5px;
    font-size: 2rem;
    color: var(--pastel-lavender);
    font-family: 'Caveat', cursive;
    opacity: 0.6;
}

.diary-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px dashed var(--pastel-lavender);
    text-align: center;
    position: relative;
}

.diary-footer::before {
    content: '✨';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    font-size: 1.5rem;
    background: var(--paper-bg);
    padding: 0 1rem;
}

.diary-footer .team-member-social {
    margin-bottom: 1.5rem;
}

/* Decorative Stickers */
.diary-sticker {
    position: absolute;
    font-size: 1.8rem;
    z-index: 10;
    pointer-events: none;
    animation: float-sticker 3s ease-in-out infinite;
}

.diary-sticker-1 {
    top: 5%;
    right: 8%;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.diary-sticker-2 {
    top: 15%;
    left: 5%;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
}

.diary-sticker-3 {
    bottom: 20%;
    right: 5%;
    transform: rotate(20deg);
    animation-delay: 1s;
}

.diary-sticker-4 {
    bottom: 10%;
    left: 8%;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

@keyframes float-sticker {
    0%, 100% { transform: translateY(0) rotate(var(--sticker-rotation, 0deg)); }
    50% { transform: translateY(-8px) rotate(calc(var(--sticker-rotation, 0deg) + 5deg)); }
}

/* Polaroid Label */
.polaroid-label {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--logo-maroon);
    text-align: center;
    margin-top: 0.5rem;
    transform: rotate(-1deg);
    font-weight: 600;
}

.diary-avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Name Badge */
.name-badge {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    padding: 0.8rem 2rem;
    border-radius: 40px;
    border: 3px dashed var(--pastel-maroon);
    display: inline-block;
    transform: rotate(-1.5deg);
    box-shadow: 
        0 4px 12px rgba(139, 58, 74, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    position: relative;
}

.name-badge::before {
    content: '✨';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    font-size: 1rem;
}

.name-badge::after {
    content: '✨';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    font-size: 1rem;
}

.decorative-doodle {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--pastel-maroon);
    text-align: center;
    margin-top: 0.5rem;
    opacity: 0.6;
    transform: rotate(2deg);
    letter-spacing: 0.3rem;
}

/* Entry Date */
.entry-date {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--logo-maroon);
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 244, 212, 0.6));
    border-radius: 50px;
    border: 3px dashed var(--pastel-lavender);
    display: block;
    transform: rotate(-0.8deg);
    box-shadow: 
        0 4px 12px rgba(139, 58, 74, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.entry-date::before {
    content: '📅';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 1.2rem;
}

.entry-date::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: var(--pastel-yellow);
    border-radius: 10px;
    opacity: 0.7;
}

/* Section Numbers */
.section-number {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pastel-maroon), var(--pastel-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--card-bg);
    border: 4px solid var(--card-bg);
    box-shadow: 
        0 4px 10px rgba(139, 58, 74, 0.25),
        0 0 0 2px var(--pastel-yellow);
    transform: rotate(-12deg);
    z-index: 3;
    transition: transform 0.3s ease;
}

.diary-section:hover .section-number {
    transform: rotate(0deg) scale(1.1);
}

.team-member-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: var(--tape-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-member-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member-role {
    text-align: center;
    color: var(--logo-maroon);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.team-member-bio {
    margin-top: 2rem;
}

.team-member-bio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    margin-top: 2rem;
}

.team-member-bio h2:first-of-type {
    margin-top: 0;
}

.team-member-bio h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-member-bio p {
    color: #8B7A8B;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.favorite-spots {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.favorite-spots li {
    padding: 0.5rem 0;
    color: #8B7A8B;
    font-size: 1.1rem;
}

.team-member-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: var(--logo-maroon);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--pastel-maroon);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-maroon);
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    color: var(--logo-maroon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px dashed var(--pastel-maroon);
    border-radius: 20px;
}

.back-link:hover {
    background: var(--pastel-maroon);
    color: var(--card-bg);
    border-style: solid;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--beige-bg), var(--pastel-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-icon {
    font-size: 4rem;
    animation: brew 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes brew {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--logo-maroon);
    font-style: italic;
}

/* Personal Note Popup */
.personal-note-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.note-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px dashed var(--pastel-lavender);
    position: relative;
    max-width: 400px;
    text-align: center;
    transform: rotate(-1deg);
}

.note-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.note-close:hover {
    transform: rotate(90deg);
}

.note-content h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.note-content p {
    color: #8B7A8B;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.note-message {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--logo-maroon);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Food Wheel Section */
.foodwheel-section {
    background: transparent;
    position: relative;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.wheel-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Pointer indicator at the top of the wheel */
.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--logo-maroon);
    z-index: 20;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.wheel-pointer::after {
    content: '';
    position: absolute;
    top: -28px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid var(--pastel-pink);
    z-index: -1;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    border: 8px solid var(--pastel-pink);
    box-shadow: 
        0 0 0 4px var(--pastel-lavender),
        0 0 0 8px var(--pastel-mint),
        0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-origin: center;
}

.wheel-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: center;
    overflow: visible;
}

.wheel-segment .segment-text {
    overflow: visible !important;
    clip-path: none !important;
}

.segment-text {
    position: absolute;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(calc(var(--text-rotation, 0deg)));
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--logo-maroon);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    z-index: 200;
    text-shadow: 
        3px 3px 6px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 0.95),
        -1px -1px 2px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    text-align: center;
    max-width: var(--max-width, 60px);
    min-width: 0;
    line-height: 1.3;
    padding: 0.15rem;
    box-sizing: border-box;
    display: inline-block;
}


.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--card-bg);
    border-radius: 50%;
    border: 4px solid var(--pastel-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spin-button {
    background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
    color: var(--logo-maroon);
    border: 2px solid var(--pastel-maroon);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.spin-button:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.spin-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wheel-result {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px dashed var(--pastel-peach);
    text-align: center;
    min-width: 250px;
    transform: rotate(0.5deg);
}

.wheel-result h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.result-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--logo-maroon);
    margin: 1rem 0;
    font-family: 'Playfair Display', serif;
}

.result-message {
    color: #8B7A8B;
    font-style: italic;
}

/* Event Timeline Section */
.timeline-section {
    background: transparent;
    position: relative;
}

.timeline-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    padding-left: 3rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--pastel-pink), var(--pastel-lavender), var(--pastel-mint));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--pastel-maroon);
    border-radius: 50%;
    border: 4px solid var(--card-bg);
    box-shadow: 0 0 0 3px var(--pastel-pink);
}

.timeline-date {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--logo-maroon);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 3px dashed var(--pastel-lavender);
    transform: rotate(-0.5deg);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #8B7A8B;
    line-height: 1.6;
}

/* Social Proof Footer */
/* Logo Marquee Section */
.logo-marquee-section {
    margin: 3rem 0 2rem;
    padding: 3rem 0;
    text-align: center;
}

.marquee-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--logo-maroon);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.marquee-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 1rem;
}

.marquee-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.marquee-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.marquee-logo.virginiarailway-logo {
    background: #000000;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Legacy social-proof styles for other pages */
.social-proof {
    margin: 3rem 0 2rem;
    padding: 2rem 0;
    border-top: 2px dashed var(--pastel-mint);
    border-bottom: 2px dashed var(--pastel-mint);
    text-align: center;
}

.social-proof h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--logo-maroon);
    margin-bottom: 1.5rem;
}

.collab-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.collab-logo {
    width: 150px;
    height: 100px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--pastel-teal);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    cursor: pointer;
    transform: rotate(-1deg);
}

.collab-logo:hover {
    filter: grayscale(0%);
    transform: rotate(0deg) scale(1.05);
    border-color: var(--pastel-cyan);
    box-shadow: var(--shadow-lg);
}

.collab-logo:nth-child(even) {
    transform: rotate(1deg);
}

.collab-logo:nth-child(even):hover {
    transform: rotate(0deg) scale(1.05);
}

.logo-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Footer */
/* Navigation Arrow */
.nav-arrow-container {
    text-align: center;
    padding: 3rem 0;
    background: transparent;
}

.nav-arrow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--logo-maroon);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-arrow:hover {
    transform: translateY(5px);
    color: var(--pastel-pink);
}

.arrow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.arrow-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Quick Links Section */
.quick-links-section {
    background: linear-gradient(135deg, rgba(255, 245, 250, 0.5), rgba(245, 255, 250, 0.5));
    padding: 4rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-link-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pastel-pink);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--logo-maroon);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.quick-link-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Calendar Availability Styles */
.form-help-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.calendar-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav-btn {
    background: var(--pastel-pink);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: var(--logo-maroon);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--pastel-lavender);
    transform: scale(1.1);
}

.calendar-month-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--logo-maroon);
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--logo-maroon);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.calendar-day.empty {
    cursor: default;
    background: transparent;
}

.calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.unavailable {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    cursor: not-allowed;
}

.calendar-day.available {
    background: rgba(46, 125, 50, 0.15);
    color: #2e7d32;
    border-color: rgba(46, 125, 50, 0.3);
}

.calendar-day.available:hover {
    background: rgba(46, 125, 50, 0.3);
    transform: scale(1.1);
    border-color: #2e7d32;
}

.calendar-day.booked {
    background: rgba(211, 47, 47, 0.3);
    color: #c62828;
    cursor: not-allowed;
    border-color: #d32f2f;
    font-weight: 600;
}

.calendar-day.selected {
    border: 3px solid var(--logo-maroon);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

/* Selected state should preserve the status colors */
.calendar-day.selected.available {
    background: rgba(46, 125, 50, 0.25);
    color: #2e7d32;
    border-color: var(--logo-maroon);
}

.calendar-day.selected.booked {
    background: rgba(211, 47, 47, 0.4);
    color: #c62828;
    border-color: var(--logo-maroon);
}

.calendar-day.selected.unavailable {
    background: rgba(158, 158, 158, 0.3);
    color: #9e9e9e;
    border-color: var(--logo-maroon);
}

/* Admin Mode Styles */
.calendar-day.admin-editable {
    transition: all 0.2s ease;
}

.calendar-day.admin-editable:not(.past):hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative;
}

/* Admin Panel (in footer) */
.admin-footer-panel {
    width: 100%;
    margin-top: 1rem;
    display: block;
}

.admin-panel-content {
    background: white;
    border: 2px solid var(--pastel-pink);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.admin-panel-content.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.admin-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.admin-badge span {
    font-weight: 600;
    color: var(--logo-maroon);
    font-size: 0.9rem;
}

.admin-logout-btn {
    background: var(--logo-maroon);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
}

.admin-logout-btn:hover {
    background: #6b2a3a;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.admin-instructions {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    text-align: left;
    font-style: italic;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .admin-footer-panel {
        margin-top: 0.75rem;
    }
    
    .admin-panel-content {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--pastel-teal);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid transparent;
}

.legend-color.available {
    background: rgba(46, 125, 50, 0.15);
    border-color: rgba(46, 125, 50, 0.3);
}

.legend-color.booked {
    background: rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.3);
}

.legend-color.unavailable {
    background: rgba(158, 158, 158, 0.2);
}

.selected-date-display {
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 245, 250, 0.8);
    border-radius: 10px;
}

.selected-date-text {
    font-weight: 600;
    color: var(--logo-maroon);
    font-size: 1rem;
}

/* Time Selection */
.time-selection {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--pastel-teal);
}

.time-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.time-selection select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--pastel-pink);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.3s;
}

.time-selection select:focus {
    outline: none;
    border-color: var(--logo-maroon);
}

.time-selection select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Time Selection */
.time-selection {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--pastel-teal);
}

.time-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.time-selection select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--pastel-pink);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.3s;
}

.time-selection select:focus {
    outline: none;
    border-color: var(--logo-maroon);
}

.time-selection select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer {
    background: linear-gradient(135deg, var(--pastel-cyan), var(--pastel-teal), var(--pastel-yellow));
    color: #8B5A7A;
    padding: 3rem 0 1.5rem;
    border-top: 3px dashed var(--pastel-orange);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--logo-maroon);
}

.footer-brand p {
    color: #8B7A8B;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #8B7A8B;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '💖 ';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: var(--logo-maroon);
}

.footer-links .admin-footer-link {
    color: #8B7A8B;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    opacity: 1;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0;
    text-align: left;
    display: block;
    width: 100%;
}

.footer-links .admin-footer-link::before {
    content: '💖 ';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links .admin-footer-link:hover::before {
    opacity: 1;
}

.footer-links .admin-footer-link:hover {
    color: var(--logo-maroon);
}

.footer-links .admin-footer-panel {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(139, 58, 74, 0.2);
}

/* Calendar Saved Notification */
.calendar-saved-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.calendar-saved-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.calendar-container {
    position: relative;
}

/* Calendar Saved Notification */
.calendar-saved-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.calendar-saved-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px dotted var(--pastel-lime);
    color: #8B7A8B;
    position: relative;
}


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

/* Responsive Design */
@media (max-width: 600px) {
    /* Better container padding for mobile */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation improvements - mobile stays fixed */
    .navbar {
        overflow: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    /* Ensure original navbar stays fixed on mobile */
    .navbar-scrolled-out {
        position: fixed !important;
        transform: translateY(0) !important;
    }
    
    /* Make sure fixed duplicate navbar is hidden on mobile */
    .navbar-fixed {
        display: none !important;
    }
    
    .navbar .container {
        position: relative;
        overflow: visible;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background: var(--card-bg) !important;
        width: 100% !important;
        text-align: center;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0 !important;
        border-bottom: 2px dashed var(--pastel-lavender);
        z-index: 10000 !important;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        margin: 0 !important;
        list-style: none !important;
        gap: 0.5rem !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Hide navbar sparkle on mobile */
    .navbar::after {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .nav-menu li {
        padding: 0.5rem 1rem !important;
        margin: 0 !important;
        width: 100%;
        display: block;
    }
    
    .nav-menu a {
        font-size: 1rem !important;
        padding: 0.75rem 1.5rem !important;
        display: block !important;
        min-height: 44px;
        width: 100%;
        box-sizing: border-box;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        color: var(--text-dark) !important;
        font-weight: 600 !important;
        transition: all 0.2s ease !important;
        text-decoration: none !important;
        box-shadow: none !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(139, 58, 74, 0.05) !important;
        transform: none !important;
        color: var(--logo-maroon) !important;
    }

    .nav-toggle {
        display: flex !important;
        min-width: 44px;
        min-height: 44px;
        z-index: 10001 !important;
        position: relative;
        padding: 0.5rem;
    }
    
    .nav-toggle span {
        background: var(--logo-maroon);
    }
    
    /* Remove desktop decorative elements on mobile */
    .nav-menu li::before {
        display: none !important;
    }
    
    
    .nav-brand {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }

    .logo-container {
        padding: 2rem 2.5rem;
    }
    
    .logo-main {
        font-size: 4rem;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
    
    .welcome-title::before,
    .welcome-title::after {
        display: none;
    }
    
    .welcome-tagline {
        font-size: 1.5rem;
    }
    
    .welcome-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .what-we-do-title {
        font-size: 2.5rem;
    }
    
    .what-we-do-title::before,
    .what-we-do-title::after {
        display: none;
    }
    
    .what-we-do-intro {
        font-size: 1.1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem 1.5rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .location-pin {
        width: 30px;
        height: 38px;
        right: -35px;
        top: -8px;
    }
    
    .logo-small {
        font-size: 1.2rem;
    }
    
    .hero-photos {
        height: 500px;
    }
    
    .photo-4,
    .photo-5 {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-photos {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .photo-1 {
        width: 180px;
    }
    
    .photo-2 {
        width: 200px;
        left: 100px;
    }
    
    .photo-3 {
        width: 160px;
    }
    
    .decoration-star {
        font-size: 1.5rem;
    }

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

    .instagram-widget {
        grid-template-columns: 1fr;
    }
    
    .instagram-embed {
        padding: 1rem;
    }
    
    .snapwidget-widget {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reel-item {
        width: 100%;
        max-width: 100%;
    }
    
    .reel-item blockquote {
        min-width: 100% !important;
        width: 100% !important;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-card.featured {
        transform: rotate(0deg) scale(1);
    }
    
    .package-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card:nth-child(even) {
        transform: rotate(0deg);
    }
    
    .service-card:nth-child(even):hover {
        transform: translateY(-5px);
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .pricing-inquiry-headline {
        font-size: clamp(1.15rem, 5vw, 1.55rem);
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
    
    .recents-simple-card {
        padding: 2.5rem 2rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-link-card {
        padding: 1.5rem 1rem;
    }

    .collab-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collab-card {
        padding: 2rem 1.5rem;
    }
    
    .collab-form-card {
        padding: 2rem 1.5rem;
        transform: rotate(0deg);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        min-height: 44px; /* Touch target */
    }
    
    .collab-submit-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        width: 100%;
    }
    
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .popup-content h3 {
        font-size: 1.5rem;
    }
    
    .popup-content p {
        font-size: 1rem;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .popup-button {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .collab-email-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
        width: 100%;
    }

    .team-member-card {
        padding: 2.5rem 2rem;
    }

    .team-member-name {
        font-size: 2rem;
    }
    
    /* Owner cards grid improvements */
    .owners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .owner-card {
        padding: 2rem 1.5rem;
        transform: rotate(0deg);
    }
    
    .owner-card:nth-child(even) {
        transform: rotate(0deg);
    }
    
    .owner-link {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: inline-block;
    }
    
    .diary-card {
        padding: 2rem 1.5rem;
        transform: rotate(0deg);
        margin: 1rem 0;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .diary-card::before {
        left: 40px;
    }
    
    .diary-header::before,
    .diary-header::after {
        display: none;
    }
    
    .diary-avatar::before,
    .diary-avatar::after {
        display: none;
    }
    
    .diary-section {
        margin-bottom: 2rem;
    }
    
    .diary-answer {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .social-link {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: inline-block;
        margin: 0.5rem;
    }
    
    .back-link {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: inline-block;
    }
    
    .diary-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem !important;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .diary-avatar {
        width: 250px;
        height: 250px;
        margin: 0 auto;
        max-width: 100%;
        transform: rotate(0deg);
    }
    
    .diary-avatar-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .diary-name-tagline {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .diary-name {
        font-size: 2.5rem;
        transform: rotate(0deg);
        text-align: center;
        width: 100%;
    }
    
    .diary-name::after {
        right: -15px;
    }
    
    .diary-tagline {
        font-size: 1rem;
        transform: rotate(0deg);
        text-align: center;
        padding-left: 0;
        width: 100%;
    }
    
    .diary-tagline::before {
        display: none;
    }
    
    .name-badge {
        width: 100%;
        text-align: center;
    }
    
    .diary-section {
        flex-direction: column;
        gap: 0.8rem;
        padding-left: 0.5rem;
    }
    
    .diary-emoji {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .diary-question {
        font-size: 1.6rem;
    }
    
    .diary-answer {
        font-size: 1rem;
        margin-left: 0.5rem;
        padding: 0.6rem;
    }
    
    .diary-section {
        padding: 1rem;
        margin-left: 10px;
    }
    
    .section-number {
        left: -20px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .diary-sticker {
        font-size: 1.5rem;
    }
    
    .name-badge {
        padding: 0.6rem 1.5rem;
    }
    
    .entry-date {
        padding: 0.8rem 1.5rem;
        font-size: 1.4rem;
    }
    
    .entry-date::before {
        left: 15px;
        font-size: 1rem;
    }
    
    .timeline-container {
        padding-left: 2rem;
    }
    
    .wheel-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .collab-logos {
        gap: 2rem;
    }
    
    /* Logo Marquee Mobile */
    .logo-marquee-section {
        padding: 2rem 0;
    }
    
    .marquee-headline {
        font-size: 1.2rem;
    }
    
    .marquee-subtitle {
        font-size: 0.75rem;
    }
    
    .logo-item {
        height: 50px;
        padding: 0 0.5rem;
    }
    
    .marquee-logo {
        max-height: 50px;
        max-width: 120px;
    }
    
    .logo-marquee-track {
        gap: 2.5rem;
    }
    
    .group-photos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .group-photo-wrapper {
        height: 300px;
    }
    
    .group-photo-content {
        padding: 2rem 1.5rem;
    }
    
    .group-photo-title {
        font-size: 1.6rem;
    }
    
    .group-photo-caption {
        font-size: 1rem;
    }
    
    .celebration-badge {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    
    /* Food wheel mobile improvements */
    .wheel-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .wheel-pointer {
        top: -12px;
        border-left-width: 12px;
        border-right-width: 12px;
        border-top-width: 20px;
    }
    
    .wheel-pointer::after {
        top: -23px;
        left: -10px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 16px;
    }
    
    .segment-text {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }
    
    .wheel-center {
        width: 90px;
        height: 90px;
    }
    
    .spin-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .wheel-result {
        padding: 1.5rem;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    /* Loader and popup mobile improvements */
    .loader-content {
        padding: 2rem 1.5rem;
    }
    
    .loader-icon {
        font-size: 3rem;
    }
    
    .loader-text {
        font-size: 1.2rem;
    }
    
    .note-card {
        padding: 2rem 1.5rem;
        max-width: 90%;
        margin: 1rem;
    }
    
    .note-close {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Timeline improvements */
    .timeline-container {
        padding: 1rem 0;
    }
    
    .timeline-item {
        padding: 1.5rem 1rem;
    }
    
    /* Section spacing improvements */
    section {
        padding: 3rem 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Button improvements for touch */
    .cta-button-primary,
    .cta-button-secondary {
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Instagram embeds mobile fix */
    .instagram-media {
        min-width: 100% !important;
        width: 100% !important;
    }
    
    /* Prevent text size adjustment on iOS */
    html {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better image handling on mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-main {
        font-size: 2.5rem;
    }
    
    .location-pin {
        width: 20px;
        height: 26px;
        right: -25px;
        top: -5px;
    }
    
    .logo-small {
        font-size: 0.9rem;
    }
    
    .us-together-badge {
        font-size: 1.2rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-photos {
        height: 300px;
        max-width: 100%;
    }
    
    .photo-1 {
        width: 130px;
    }
    
    .photo-2 {
        width: 150px;
        left: 70px;
        top: 50px;
    }
    
    .photo-3 {
        width: 120px;
        top: 120px;
    }
    
    .polaroid-label {
        font-size: 0.9rem;
    }
    
    .social-buttons {
        width: 100%;
    }
    
    /* Extra small text adjustments */
    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .what-we-do-title {
        font-size: 2rem;
    }
    
    /* Owner cards extra small */
    .owner-card {
        padding: 1.5rem 1rem;
    }
    
    .owner-avatar {
        width: 120px;
        height: 120px;
    }
    
    /* Diary card extra small */
    .diary-card {
        padding: 1.5rem 1rem;
        overflow: hidden;
    }
    
    .diary-header {
        padding: 1rem 0.5rem !important;
        gap: 1rem;
    }
    
    .diary-avatar {
        width: 200px;
        height: 200px;
        max-width: 90%;
    }
    
    .diary-name-tagline {
        width: 100%;
        padding: 0;
    }
    
    .diary-name {
        font-size: 2rem;
        transform: rotate(0deg);
    }
    
    .diary-tagline {
        font-size: 0.9rem;
        transform: rotate(0deg);
        padding-left: 0;
    }
    
    /* Food wheel extra small */
    .wheel-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .wheel-pointer {
        top: -10px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 18px;
    }
    
    .wheel-pointer::after {
        top: -21px;
        left: -8px;
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 14px;
    }
    
    .segment-text {
        font-size: 0.65rem;
        padding: 0.15rem 0.25rem;
    }
    
    .wheel-center {
        width: 80px;
        height: 80px;
    }
    
    .segment-text {
        font-size: 0.6rem;
        padding: 0.1rem 0.2rem;
    }
    
    /* Form extra small */
    .collab-form-card {
        padding: 1.5rem 1rem;
    }
    
    /* Package cards extra small */
    .package-card {
        padding: 1.5rem 1rem;
    }
    
    /* Loader extra small */
    .loader-icon {
        font-size: 2.5rem;
    }
    
    .loader-text {
        font-size: 1rem;
    }
    
    .note-card {
        padding: 1.5rem 1rem;
    }
    
    /* Collaborate CTA Mobile */
    .collaborate-cta-section {
        padding: 3rem 0;
    }
    
    .cta-main-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-service-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-service-icon {
        font-size: 2.5rem;
    }
    
    .cta-service-card h3 {
        font-size: 1.2rem;
    }
    
    /* Collaborators Marquee Mobile */
    .collaborators-marquee-section {
        padding: 3rem 0;
    }
    
    .collaborators-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .collaborator-logo-item {
        height: 60px;
        padding: 0 1rem;
    }
    
    .collaborator-logo {
        max-height: 60px;
        max-width: 140px;
    }
    
    .collaborators-marquee-track {
        gap: 3rem;
    }
}

