/* ========================================
   MICHAELA - Ateliér estetické diplomacie
   Design: Quiet Luxury / Palace Minimalist
   ======================================== */

/* ========== Color Variables ========== */
:root {
    --primary: #2c2c2c;        /* Grafitová pro text */
    --accent: #d4af37;         /* Jemné zlato pro detaily */
    --bg: #fdfdfd;             /* "Vzdušná" bílá */
    --bg-alt: #fafafa;         /* Off-white */
    --shadow: rgba(0,0,0,0.05);
    --text-light: #888;
    --text-dark: #1a1a1a;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--primary);
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

/* ========== Typography ========== */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 0.1em;
}

p {
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ========== Navigation ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 253, 253, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    color: var(--accent);
}

.logo-link:hover .logo-img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

.nav-menu a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
    .nav {
        padding: 8px 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 8px 12px;
        justify-content: center;
        font-size: 0.7rem;
    }
    
    .nav-menu a {
        padding: 4px 8px;
        letter-spacing: 1px;
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 6px 0;
    }
    
    .nav-menu {
        gap: 6px 8px;
        font-size: 0.65rem;
    }
    
    .nav-menu a {
        padding: 3px 6px;
        letter-spacing: 0.5px;
    }
    
    .logo-img {
        height: 40px;
    }
}

/* ========== Scroll Margin for Fixed Nav ========== */
.hero, .about, .services, .selection, .artists, .projects, .gallery, .exhibitions, .contact {
    scroll-margin-top: 100px;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(253,253,253,0.92) 0%, rgba(250,250,250,0.88) 100%), url('assets/images/background.png') center/cover no-repeat;
    padding: 120px 40px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.brand-header {
    text-align: center;
    padding: 40px 0 60px;
}

.brand-michaela {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.brand-divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    margin: 25px auto;
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-light);
}

.hero-statement {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 40px auto 30px;
    max-width: 900px;
    font-style: italic;
    color: var(--primary);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeInUp 1.5s ease-out;
}

/* ========== Sections ========== */
.section {
    padding: 100px 0;
    text-align: center;
}

.section:nth-child(even) {
    background-color: var(--bg-alt);
}

.section-title {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--accent);
}

.section-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

/* ========== About Section ========== */
.about {
    background: var(--bg);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.about-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--accent);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 300;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
    text-align: left;
}

.about-block {
    padding: 0;
}

.about-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent);
    text-align: left;
}

.about-block .section-text {
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== Services Section ========== */
.services {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    padding: 45px 35px;
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    position: relative;
    text-align: left;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--accent);
}

.service-title {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.2rem;
    text-align: left;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
    max-width: 100%;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

/* ========== Vision Section ========== */
.vision {
    background: var(--bg);
}

/* ========== Projects Section ========== */
.projects {
    background: var(--bg);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.project-card {
    padding: 0;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    text-align: left;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card > *:not(.project-image) {
    padding: 0 40px;
}

.project-category {
    margin-top: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: left;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: left;
    padding-bottom: 35px;
}

.vision-statement {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 50px;
    background: var(--bg-alt);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.vision-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--primary);
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-statement {
        padding: 30px 20px;
    }
}

/* ========== Selection Section ========== */
.selection {
    background: #fafafa;
    padding: 100px 20px;
}

.selection-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.selection-category {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.selection-category:hover {
    transform: translateY(-5px);
}

.category-image-placeholder {
    font-size: 4rem;
    margin-bottom: 25px;
    opacity: 0.6;
}

.category-image {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.selection-category:hover .category-img {
    transform: scale(1.05);
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0.05em;
}

.category-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.selection-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 50px;
    background: var(--bg);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    text-align: center;
}

.note-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .selection-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .selection-note {
        padding: 30px 20px;
    }
}

/* ========== Artists Section ========== */
.artists {
    background: var(--bg);
    padding: 100px 20px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.artist-card {
    padding: 0;
    background: var(--bg-alt);
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    text-align: left;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-card:hover .artist-img {
    transform: scale(1.05);
}

.artist-card:hover {
    border-left-color: var(--text-dark);
}

.artist-card > *:not(.artist-image) {
    padding: 0 35px;
}

.artist-discipline {
    margin-top: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0.05em;
}

.artist-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    padding-bottom: 35px;
}

.artists-vision {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}

.vision-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-vision {
        padding: 30px 20px;
    }
    
    .vision-highlight {
        font-size: 1.05rem;
    }
}

/* ========== Gallery Section ========== */
.gallery {
    background: var(--bg);
    padding: 100px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    aspect-ratio: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Exhibitions Section ========== */
.exhibitions {
    background: var(--bg-alt);
}

.exhibitions-list {
    max-width: 800px;
    margin: 0 auto;
}

.exhibition-item {
    padding: 35px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.exhibition-item:last-child {
    border-bottom: none;
}

.exhibition-item:hover {
    padding-left: 20px;
    background: rgba(212, 175, 55, 0.03);
}

.exhibition-venue {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 400;
}

.exhibition-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.exhibition-year {
    font-size: 0.85rem;
    color: var(--accent);
    text-align: right;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .exhibition-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 25px 0;
    }
    
    .exhibition-year {
        text-align: left;
    }
}

/* ========== Contact Section ========== */
.contact {
    background: var(--bg-alt);
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin: 60px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-block {
    text-align: center;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 400;
}

.contact-detail {
    font-size: 1.05rem;
    color: var(--primary);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-detail a:hover {
    border-bottom-color: var(--accent);
}

.contact-cta {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========== Buttons ========== */
.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--primary);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.btn-cta:hover {
    background: var(--primary);
    color: white;
    letter-spacing: 0.25em;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow);
}

/* ========== Social Links ========== */
.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icon {
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 3px;
}

.social-icon:hover {
    border-bottom-color: var(--accent);
    opacity: 0.7;
    letter-spacing: 0.2em;
}

/* ========== Footer ========== */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    color: white;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-button {
    padding: 12px 20px;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-weight: bold;
}

.newsletter-button:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin: 0;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
}

.footer-separator {
    color: rgba(255,255,255,0.3);
}

.footer-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-separator {
        display: none;
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .brand-michaela {
        letter-spacing: 0.15em;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
    }
}

/* ========== Legal Pages ========== */
.legal-page {
    padding: 140px 0 80px 0;
    min-height: 100vh;
    background: var(--bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.legal-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 35px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.legal-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
    font-size: 1.05rem;
}

.legal-section a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    font-weight: 500;
}

.legal-section a:hover {
    border-bottom-color: var(--accent);
}

.legal-back {
    margin-top: 60px;
    text-align: center;
}

.legal-back-link {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.legal-back-link:hover {
    background: #b8942d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Legal Pages - Mobile Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px 0;
    }
    
    .legal-content {
        padding: 40px 25px;
        border-radius: 0;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .legal-intro {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
        margin-top: 30px;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
    
    .legal-section ul {
        margin-left: 20px;
    }
    
    .legal-back {
        margin-top: 50px;
    }
    
    .legal-back-link {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 85px 0 50px 0;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* ========== Cookie Consent Banner ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    backdrop-filter: blur(10px);
    color: #FDFDFD;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--accent);
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 600;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent);
    color: #2C2C2C;
    font-weight: 600;
}

.cookie-btn-accept:hover {
    background: #c99d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.cookie-btn-necessary {
    background: transparent;
    color: #FDFDFD;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.cookie-btn-settings:hover {
    background: var(--accent);
    color: #2C2C2C;
}

.cookie-consent-links {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

.cookie-consent-links a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-consent-links a:hover {
    color: #c99d2e;
    text-decoration: underline;
}

/* Cookie Banner - Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 20px 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-text {
        min-width: unset;
    }
    
    .cookie-consent-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.9rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .cookie-consent-links {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px 12px;
    }
    
    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* ========== Floating Chat Widget ========== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #c99d2e 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.chat-bubble:active {
    transform: scale(0.95);
}

.chat-icon {
    width: 28px;
    height: 28px;
    color: #2C2C2C;
    transition: all 0.3s ease;
}

.chat-close-icon {
    position: absolute;
    font-size: 36px;
    color: #2C2C2C;
    font-weight: 300;
    line-height: 1;
    opacity: 0;
    transform: rotate(-180deg) scale(0);
    transition: all 0.3s ease;
}

.chat-bubble.active .chat-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.chat-bubble.active .chat-close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Chat Menu */
.chat-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chat-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-menu-header {
    background: linear-gradient(135deg, var(--accent) 0%, #c99d2e 100%);
    padding: 20px;
    text-align: center;
    color: #2C2C2C;
}

.chat-menu-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.chat-menu-header p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.85;
}

.chat-options {
    padding: 15px;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--bg);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-option:last-child {
    margin-bottom: 0;
}

.chat-option:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Chat Option Icons - Specific Colors */
.chat-option.whatsapp:hover {
    background: #f0fdf4;
    border-color: #25D366;
}

.chat-option.whatsapp .chat-option-icon {
    color: #25D366;
}

.chat-option.email:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.chat-option.email .chat-option-icon {
    color: #ef4444;
}

.chat-option.phone:hover {
    background: #eff6ff;
    border-color: #3b82f6;
}

.chat-option.phone .chat-option-icon {
    color: #3b82f6;
}

.chat-option.facebook:hover {
    background: #eff6ff;
    border-color: #1877f2;
}

.chat-option.facebook .chat-option-icon {
    color: #1877f2;
}

.chat-option.instagram:hover {
    background: linear-gradient(135deg, #f9f5ff 0%, #fef3ff 100%);
    border-color: #c026d3;
}

.chat-option.instagram .chat-option-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-option-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    stroke-width: 2;
}

.chat-option-content {
    display: flex;
    flex-direction: column;
}

.chat-option-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.chat-option-desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Chat Widget - Mobile Responsive */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-bubble {
        width: 56px;
        height: 56px;
    }
    
    .chat-icon {
        width: 26px;
        height: 26px;
    }
    
    .chat-menu {
        width: calc(100vw - 40px);
        max-width: 320px;
        bottom: 70px;
    }
    
    .chat-menu-header {
        padding: 18px;
    }
    
    .chat-menu-header h4 {
        font-size: 1.2rem;
    }
    
    .chat-menu-header p {
        font-size: 0.85rem;
    }
    
    .chat-options {
        padding: 12px;
    }
    
    .chat-option {
        padding: 12px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-bubble {
        width: 52px;
        height: 52px;
    }
    
    .chat-icon {
        width: 24px;
        height: 24px;
    }
    
    .chat-close-icon {
        font-size: 32px;
    }
    
    .chat-menu {
        width: calc(100vw - 30px);
        bottom: 65px;
        right: 0;
    }
}

/* Accessibility: Pulse Animation for Chat Bubble */
@keyframes chat-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(212, 175, 55, 0.7), 0 0 0 8px rgba(212, 175, 55, 0.1);
    }
}

.chat-bubble:not(.active) {
    animation: chat-pulse 2s ease-in-out infinite;
}

/* ========== Smooth Scrolling Enhancement ========== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
