/* Local Fonts */
@font-face {
    font-family: 'Inter';
    src: url('static/Inter,Playfair_Display/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('static/Inter,Playfair_Display/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('static/Inter,Playfair_Display/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('static/Inter,Playfair_Display/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --orchid-pink: #DFA9B6ff;
    --paynes-gray: #4B5D69ff;
    --powder-blue: #97B6CAff;
    --brunswick-green: #304736ff;
    --beaver: #A07665ff;
    --satin-sheen-gold: #C49C4Bff;
    --powder-blue-2: #95B1C6ff;
    --taupe: #433C32ff;
    
    /* Additional colors for gradients and effects */
    --light-pink: #F2C2D0;
    --mint-green: #B8E6B8;
    --lavender: #E6E6FA;
    --cream: #FFF8DC;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--taupe);
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-pink) 50%, var(--powder-blue) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    /* Removed expensive backdrop-filter for performance */
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 8px 32px rgba(75, 93, 105, 0.1);
    border-bottom: 1px solid rgba(223, 169, 182, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    will-change: background, box-shadow;
}

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

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--orchid-pink), var(--brunswick-green), var(--satin-sheen-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Removed expensive infinite animation for performance */
}

.logo-animation {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 10px;
    height: 10px;
    background: var(--satin-sheen-gold);
    border-radius: 50%;
    /* Removed expensive infinite animation for performance */
}

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

@keyframes sparkle {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--paynes-gray);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--orchid-pink);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--paynes-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 80%, rgba(223, 169, 182, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(151, 182, 202, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(196, 156, 75, 0.2) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    font-size: 2rem;
    /* Removed expensive infinite animation for performance */
    opacity: 0.7;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.leaf-3 {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.leaf-4 {
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(10deg); }
    66% { transform: translateY(10px) rotate(-10deg); }
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--paynes-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}

.magical-text {
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold), var(--paynes-gray));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    /* Removed expensive infinite shimmer animation for performance */
    text-shadow: 0 2px 4px rgba(75, 93, 105, 0.3);
    filter: drop-shadow(0 1px 2px rgba(75, 93, 105, 0.4));
}

@keyframes shimmer {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1) drop-shadow(0 1px 2px rgba(75, 93, 105, 0.4));
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.3) drop-shadow(0 2px 8px rgba(223, 169, 182, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--paynes-gray);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--orchid-pink);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(223, 169, 182, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 169, 182, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--paynes-gray);
    border: 2px solid var(--powder-blue);
}

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

.btn-outline {
    background: transparent;
    color: var(--orchid-pink);
    border: 2px solid var(--orchid-pink);
}

.btn-outline:hover {
    background: var(--orchid-pink);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(75, 93, 105, 0.3);
    /* Removed expensive infinite float animation for performance */
    transition: transform 0.3s ease;
    will-change: transform;
}

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

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

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--paynes-gray);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    border-radius: 2px;
}

/* Two Studios Section */
.two-studios {
    background: rgba(255, 255, 255, 0.95);
    /* Removed expensive backdrop-filter for performance */
    padding: 60px 0;
}

.studios-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--orchid-pink);
    font-style: italic;
    margin-bottom: 40px;
    margin-top: -30px;
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.studio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 194, 208, 0.1));
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(75, 93, 105, 0.15);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    will-change: transform;
}

.studio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(75, 93, 105, 0.25);
}

.studio-appointment {
    border-color: var(--orchid-pink);
}

.studio-selfservice {
    border-color: var(--powder-blue);
}

.studio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(223, 169, 182, 0.4);
}

.studio-selfservice .studio-badge {
    background: linear-gradient(45deg, var(--powder-blue), var(--brunswick-green));
}

.studio-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.studio-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--paynes-gray);
    margin-bottom: 10px;
}

.studio-type {
    font-size: 1.1rem;
    color: var(--orchid-pink);
    font-weight: 600;
    margin-bottom: 20px;
}

.studio-selfservice .studio-type {
    color: var(--powder-blue);
}

.studio-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(223, 169, 182, 0.1);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.studio-selfservice .studio-hours {
    background: rgba(151, 182, 202, 0.1);
}

.hours-icon {
    font-size: 1.5rem;
}

.studio-services {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.studio-services li {
    padding: 10px 15px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 3px solid var(--orchid-pink);
    transition: all 0.3s ease;
}

.studio-selfservice .studio-services li {
    border-left-color: var(--powder-blue);
}

.studio-services li:hover {
    background: rgba(223, 169, 182, 0.15);
    transform: translateX(5px);
}

.studio-note {
    font-size: 0.9rem;
    color: var(--paynes-gray);
    margin: 15px 0 10px;
    font-style: italic;
}

.payment-info {
    font-size: 0.95rem;
    color: var(--paynes-gray);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.9);
    /* Removed expensive backdrop-filter for performance */
}

.location-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--paynes-gray);
    margin: 50px 0 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(223, 169, 182, 0.15), rgba(255, 255, 255, 0.9));
    border-radius: 15px;
    border-left: 5px solid var(--orchid-pink);
}

.location-header:first-of-type {
    margin-top: 0;
}

.self-service-header {
    background: linear-gradient(135deg, rgba(151, 182, 202, 0.15), rgba(255, 255, 255, 0.9));
    border-left-color: var(--powder-blue);
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    z-index: 10;
}

.location-badge.appointment {
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    box-shadow: 0 4px 15px rgba(223, 169, 182, 0.4);
}

.location-badge.selfservice {
    background: linear-gradient(45deg, var(--powder-blue), var(--brunswick-green));
    box-shadow: 0 4px 15px rgba(151, 182, 202, 0.4);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(75, 93, 105, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 169, 182, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(75, 93, 105, 0.2);
    will-change: transform;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    /* Removed expensive infinite bounce animation for performance */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--paynes-gray);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--paynes-gray);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-pricing {
    margin: 20px 0;
    padding: 15px;
    background: rgba(223, 169, 182, 0.1);
    border-radius: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}

.price-item span {
    color: var(--paynes-gray);
}

.price-item strong {
    color: var(--orchid-pink);
    font-size: 1.1rem;
    font-weight: 700;
}

.service-image {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(75, 93, 105, 0.2);
    height: 200px;
}

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

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.service-features li {
    padding: 5px 0;
    color: var(--paynes-gray);
    opacity: 0.9;
    font-size: 0.95rem;
}

.service-details {
    margin: 15px 0;
    text-align: left;
}

.service-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--paynes-gray);
    opacity: 0.9;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(223, 169, 182, 0.8), rgba(151, 182, 202, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    animation: slideInUp 0.3s ease;
}

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

/* Pricing Section */
.pricing {
    background: rgba(255, 255, 255, 0.9);
    /* Removed expensive backdrop-filter for performance */
}

.location-pricing-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--paynes-gray);
    margin: 50px 0 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(223, 169, 182, 0.15), rgba(255, 255, 255, 0.9));
    border-radius: 15px;
    border-left: 5px solid var(--orchid-pink);
}

.location-pricing-header:first-of-type {
    margin-top: 0;
}

.self-service-pricing {
    background: linear-gradient(135deg, rgba(151, 182, 202, 0.15), rgba(255, 255, 255, 0.9));
    border-left-color: var(--powder-blue);
}

.payment-info-box {
    background: linear-gradient(135deg, rgba(151, 182, 202, 0.2), rgba(255, 255, 255, 0.5));
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--powder-blue);
}

.payment-info-box p {
    margin: 10px 0;
    color: var(--paynes-gray);
    font-size: 1rem;
}

.gift-cards-note {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.pricing-content {
    display: grid;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(75, 93, 105, 0.1);
}

.pricing-category {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--paynes-gray);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.pricing-category::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    border-radius: 2px;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(151, 182, 202, 0.2);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: rgba(223, 169, 182, 0.1);
    border-color: var(--orchid-pink);
    transform: translateY(-2px);
}

.service-name {
    font-weight: 500;
    color: var(--paynes-gray);
}

.price {
    font-weight: 700;
    color: var(--orchid-pink);
    font-size: 1.1rem;
}

.pricing-note {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    color: var(--paynes-gray);
    opacity: 0.8;
}

.gift-cards {
    background: linear-gradient(135deg, var(--orchid-pink), var(--satin-sheen-gold));
    color: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.gift-cards .pricing-category {
    color: white;
    margin-bottom: 30px;
}

.gift-cards .pricing-category::after {
    background: rgba(255, 255, 255, 0.5);
}

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

.gift-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.gift-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.gift-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gift-value {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-special {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    color: white;
    border-radius: 15px;
    text-align: center;
}

.contact-special h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-special p {
    margin: 0;
    opacity: 0.9;
}

.two-locations-box {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(223, 169, 182, 0.1), rgba(151, 182, 202, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(223, 169, 182, 0.3);
}

.two-locations-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--paynes-gray);
    margin-bottom: 20px;
    text-align: center;
}

.location-info {
    display: grid;
    gap: 20px;
}

.location-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--orchid-pink);
}

.location-item:last-child {
    border-left-color: var(--powder-blue);
}

.location-item strong {
    font-size: 1.1rem;
    color: var(--paynes-gray);
    display: block;
    margin-bottom: 8px;
}

.location-item p {
    margin: 5px 0;
    color: var(--paynes-gray);
}

.location-item small {
    display: block;
    margin-top: 10px;
    font-style: italic;
    opacity: 0.8;
}

.auto-close {
    color: var(--orchid-pink);
    font-weight: 500;
    margin-top: 10px;
}

.location-address {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: var(--paynes-gray);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-content-single {
    display: flex;
    justify-content: center;
}

.contact-content-single .contact-info {
    max-width: 600px;
    width: 100%;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--paynes-gray);
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(75, 93, 105, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(151, 182, 202, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orchid-pink);
    box-shadow: 0 0 15px rgba(223, 169, 182, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--paynes-gray), var(--brunswick-green));
    color: white;
    padding: 50px 0 20px;
}

.footer-branding {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--orchid-pink);
    margin: 0;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orchid-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2) rotate(10deg);
}

.footer-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.footer-cta .btn {
    min-width: 200px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(75, 93, 105, 0.85);
    /* Removed expensive backdrop-filter for performance */
    animation: fadeIn 0.3s ease;
}

.service-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 194, 208, 0.15));
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(75, 93, 105, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    /* Removed expensive backdrop-filter for performance */
    border: 1px solid rgba(223, 169, 182, 0.3);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(223, 169, 182, 0.2);
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--paynes-gray);
    margin: 0;
    background: linear-gradient(45deg, var(--orchid-pink), var(--brunswick-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--paynes-gray);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.modal-close:hover {
    background: rgba(223, 169, 182, 0.2);
    opacity: 1;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.modal-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(75, 93, 105, 0.2);
    background: linear-gradient(45deg, var(--light-pink), var(--powder-blue));
}

.modal-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.modal-image-container:hover img {
    transform: scale(1.05);
}

.modal-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--paynes-gray);
    margin-bottom: 15px;
    position: relative;
}

.modal-text h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    border-radius: 1px;
}

.modal-text p {
    color: var(--paynes-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.modal-location {
    background: linear-gradient(135deg, rgba(223, 169, 182, 0.15), rgba(151, 182, 202, 0.15));
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--orchid-pink);
    margin-top: 20px;
}

.modal-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-text li {
    padding: 8px 0;
    color: var(--paynes-gray);
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.modal-text li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--satin-sheen-gold);
}

/* Updated Service Card Styles */
.service-preview-image {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(75, 93, 105, 0.2);
    height: 200px;
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.btn-learn-more {
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(223, 169, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(223, 169, 182, 0.4);
}

.btn-learn-more:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content-single {
        display: block;
    }

    .contact-content-single .contact-info {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .floating-leaf {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-items {
        grid-template-columns: 1fr;
    }
    
    .gift-card-options {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .service-image img {
        height: 150px;
    }

    .pricing-section {
        padding: 25px;
    }

    .gift-cards {
        padding: 25px;
    }
}

/* Legal Sections (Impressum & Datenschutz) */
.legal-section {
    padding: 80px 0;
    background: var(--cream);
}

.legal-section--alt {
    background: #f9f4f0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--paynes-gray);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--orchid-pink);
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--beaver);
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
}

.legal-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--paynes-gray);
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

.legal-block p {
    color: var(--taupe);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-block a {
    color: var(--beaver);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.legal-block a:hover {
    color: var(--orchid-pink);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 50px 0;
    }

    .legal-title {
        font-size: 1.6rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

::-webkit-scrollbar-track {
    background: rgba(151, 182, 202, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--orchid-pink), var(--satin-sheen-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--satin-sheen-gold), var(--orchid-pink));
}