/* ==========================================
   VIVA LA HAIR - Stylesheet
   Farbschema: Gold, Creme, Beige & Weiß
   ========================================== */

/* CSS Variables */
:root {
    /* Dunkle Akzente - nur für Text */
    --dark: #3a302a;
    --dark-deep: #2c2420;
    --dark-soft: #4d4039;

    /* Helle Hauptfarben */
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --beige: #e8dfd3;
    --beige-dark: #d4c8b8;

    /* Akzent - Gold */
    --gold: #a88a5c;
    --gold-light: #b8976a;
    --gold-muted: #c4a87a;
    --white: #ffffff;
    --text-dark: #3a302a;
    --text-light: #7a6e65;

    /* Typography */
    --font-heading: 'Italiana', 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows - warm tinted */
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.10);
    --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.14);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* ==========================================
   Layout
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

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

.section-title {
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color var(--transition-normal);
}

.navbar.scrolled .nav-logo {
    color: var(--dark);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

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

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--dark);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(184, 149, 47, 0.06) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a86c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

/* Gold decorative lines */
.hero-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    margin: 0 auto;
}

/* Ornament waves */
.hero-ornament {
    width: 160px;
    margin: 0 auto;
    color: var(--gold-muted);
    opacity: 0.6;
    line-height: 0;
}

.hero-ornament-top {
    margin-bottom: 12px;
}

.hero-ornament-bottom {
    margin-top: 12px;
    margin-bottom: 30px;
}

.hero-ornament svg {
    width: 100%;
    height: auto;
}

.hero-title {
    color: var(--dark);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: 15px 0;
    text-shadow: 0 2px 20px rgba(201, 168, 108, 0.25);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 45px;
    font-style: italic;
}

.hero .btn {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 25px rgba(184, 149, 47, 0.3);
}

.hero .btn:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(184, 149, 47, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1.5s ease 1s both;
}

/* Mouse icon - visible on desktop */
.scroll-mouse {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--beige-dark);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gold-muted);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

/* Touch indicator - same capsule shape as mouse but smaller, with dot sliding down */
.scroll-touch {
    display: none;
    width: 24px;
    height: 44px;
    border: 2px solid var(--beige-dark);
    border-radius: 12px;
    position: relative;
}

.scroll-touch span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gold-muted);
    border-radius: 50%;
    animation: touch-scroll 2s ease-in-out infinite;
}

/* Touch devices: show touch indicator, hide mouse */
@media (hover: none) {
    .scroll-mouse {
        display: none;
    }

    .scroll-touch {
        display: block;
    }
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

@keyframes touch-scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
}

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

.about-slider-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 500px;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: var(--dark);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img,
.about-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(58, 48, 42, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(4px);
}

.about-slider-nav:hover {
    background: rgba(168, 138, 92, 0.8);
}

.about-slider-prev {
    left: 12px;
}

.about-slider-next {
    right: 12px;
}

.about-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.about-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .about-slider,
    .about-slider-wrapper {
        max-height: 500px;
        height: 500px;
    }
}

.about-right p {
    color: var(--text-light);
}

.about-right p:last-child {
    margin-bottom: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.feature:hover .feature-icon {
    background-color: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.feature h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background-color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(58, 48, 42, 0.7));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background-color: var(--cream);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    color: var(--gold);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================
   Prices Section
   ========================================== */
.prices {
    background-color: var(--white);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-category {
    background-color: var(--cream);
    padding: 40px;
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.price-category:hover {
    box-shadow: var(--shadow-md);
}

.price-category h3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--beige);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige-dark);
    font-size: 0.95rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:first-child {
    color: var(--text-dark);
}

.price-list li span:last-child {
    font-weight: 700;
    color: var(--gold);
}

.prices-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.price-list-sml li {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 0;
}

.price-list-sml li span:first-child {
    font-size: 0.9rem;
    padding-right: 10px;
}

.price-list-sml li span:not(:first-child) {
    text-align: right;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 55px;
}

.price-header-row {
    border-bottom: none !important;
    padding: 5px 0 !important;
}

.price-header-row span:not(:first-child) {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.price-span-3 {
    grid-column: 2 / 5;
    text-align: right;
    font-style: italic;
    opacity: 0.85;
}

.prices-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.prices-coming-soon {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: var(--cream);
    border-radius: 8px;
}

.prices-coming-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.prices-coming-subtext {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream-dark) 100%);
    color: var(--text-dark);
}

.contact .section-title {
    color: var(--dark);
}

.contact .section-divider {
    background: linear-gradient(90deg, var(--gold-muted), var(--gold-light));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

a.contact-card-link {
    display: block;
    cursor: pointer;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
}

.contact-card:hover .contact-card-icon {
    background-color: var(--gold);
    color: var(--white);
}

.contact-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.contact-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-card a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--gold);
}

/* Form Success Message */
.form-success {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--beige);
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--beige-dark);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.footer-brand p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

/* ==========================================
   Events Section
   ========================================== */
.events {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.events-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.events-image-item {
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
}

.events-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.events-text p {
    color: var(--text-light);
}

.events-text p:last-child {
    margin-bottom: 0;
}

.events-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.event-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    color: var(--white);
}

.event-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.event-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.events-cta {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================
   Instagram Section
   ========================================== */
.instagram-section {
    background-color: var(--white);
}

.instagram-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: 300;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    transition: all var(--transition-slow);
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 48, 42, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: var(--white);
}

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

.instagram-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram CTA Card (last grid item) */
.instagram-cta-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.instagram-cta-card .instagram-cta-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    transition: all var(--transition-normal);
}

.instagram-cta-card:hover .instagram-cta-content {
    transform: scale(1.05);
}

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.instagram-follow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.instagram-cta-card:hover .instagram-follow {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Instagram Profile Link Button */
.instagram-profile-link {
    text-align: center;
    margin-top: 40px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    color: var(--gold);
    background: transparent;
    transition: all var(--transition-normal);
}

.btn-instagram:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Floating Social Buttons
   ========================================== */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: float-entrance 0.6s ease 1.5s both;
}

.floating-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.whatsapp-float {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(168, 138, 92, 0.4);
}

.whatsapp-float:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(168, 138, 92, 0.5);
}

.instagram-float {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(168, 138, 92, 0.4);
}

.instagram-float:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(168, 138, 92, 0.5);
}

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

@media (max-width: 768px) {
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }
}

/* Navigation CTA Button */
.nav-cta {
    background-color: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    margin-left: 10px;
}

.nav-cta:hover {
    background-color: var(--gold-light) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-grid,
    .prices-grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .events-image-item {
        height: 280px;
    }

    .events-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right var(--transition-normal);
    }

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

    .nav-menu .nav-link {
        font-size: 1.25rem;
        color: var(--dark);
    }

    .navbar.scrolled .nav-menu .nav-link {
        color: var(--dark);
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 450px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .price-category {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* ==========================================
   Animation Enhancements
   ========================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Smooth hover effects */
.service-card,
.price-category,
.feature-icon,
.social-link,
.btn {
    will-change: transform;
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 32, 0.92);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

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

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.9;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.lightbox-close:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
    -webkit-user-select: none;
    user-select: none;
}

.lightbox-nav:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 2.2rem;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-img {
        max-width: 94vw;
        max-height: 75vh;
    }

    .lightbox-caption {
        font-size: 0.95rem;
    }
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(44, 36, 32, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--gold-muted);
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.cookie-btn-accept:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.cookie-btn-necessary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(250, 247, 242, 0.4);
}

.cookie-btn-necessary:hover {
    border-color: var(--cream);
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-text {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
