/**
 * Hlavní CSS soubor pro Pedikúra Relax
 * Responsivní design s rose/pink tématikou
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Rose color palette */
    --rose-primary: #ec4899;
    --rose-secondary: #f9a8d4;
    --rose-accent: #f472b6;
    --rose-light: #fce7f3;
    --rose-cream: #fdf2f8;
    --rose-text: #374151;
    --rose-text-light: #6b7280;
    
    /* Gray colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* White */
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--rose-text);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-rose-primary {
    color: var(--rose-primary);
}

.min-h-screen {
    min-height: 100vh;
}

.bg-rose-gradient {
    background: linear-gradient(135deg, var(--rose-cream) 0%, var(--rose-light) 100%);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--rose-text);
    letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--rose-text-light);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--rose-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #db2777;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--rose-primary);
    border: 2px solid var(--rose-primary);
}

.btn-secondary:hover {
    background-color: var(--rose-primary);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--rose-primary);
    border: 1px solid var(--rose-primary);
}

.btn-outline:hover {
    background-color: var(--rose-primary);
    color: var(--white);
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(253, 242, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(253, 164, 175, 0.3);
    padding: var(--spacing-md) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

.brand:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.brand:focus {
    outline: 2px solid var(--rose-primary);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    margin: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--rose-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--rose-primary);
}

.reservation-btn {
    border-radius: var(--border-radius-full);
    padding: 0.5rem 1rem;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--rose-text);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--rose-secondary);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--rose-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.reservation-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rose-primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose-accent) 0%, var(--rose-primary) 100%);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--rose-text-light);
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-primary), var(--rose-accent));
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--rose-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* About Section */
.about-section {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(253, 242, 248, 0.3);
    position: relative;
}


.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(253, 164, 175, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.15), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-content {
    padding: var(--spacing-3xl);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    color: var(--rose-text);
    letter-spacing: 0.01em;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(253, 242, 248, 0.5);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(253, 164, 175, 0.25);
    padding: var(--spacing-3xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-primary), var(--rose-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(236, 72, 153, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto var(--spacing-lg);
    color: var(--rose-primary);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    border-radius: 50%;
    padding: 0.75rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-title {
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rose-text);
}

.service-description {
    color: var(--rose-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Services List */
.services-list {
    margin-top: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-list-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    justify-items: center;
    margin-top: var(--spacing-lg);
}

.services-list-column {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 300px;
}

.services-list-column li {
    padding: 0.875rem 0;
    color: var(--rose-text);
    font-size: 1rem;
    border-bottom: 1px solid rgba(253, 164, 175, 0.2);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    cursor: default;
}

.services-list-column li:hover {
    color: var(--rose-primary);
    padding-left: 2.25rem;
    transform: translateX(4px);
}

.services-list-column li:before {
    content: "✓";
    color: var(--rose-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.services-list-column li:hover:before {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(244, 114, 182, 0.2));
    transform: scale(1.1);
}

.services-list-column li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(253, 164, 175, 0.25);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02), rgba(244, 114, 182, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(236, 72, 153, 0.4);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: 3px solid var(--rose-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(253, 242, 248, 0.5));
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.2), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25), 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: 1.25rem;
    right: -2.5rem;
    background: linear-gradient(135deg, var(--rose-primary), var(--rose-accent));
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header {
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    color: var(--rose-text);
}

.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--rose-text-light);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.pricing-price {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rose-primary), var(--rose-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.pricing-features {
    padding: 0 var(--spacing-xl);
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    padding: 0.25rem 0;
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateX(4px);
}

.feature-icon {
    color: var(--rose-primary);
    font-weight: 700;
    font-size: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
}

.feature.special .feature-icon {
    color: var(--rose-accent);
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(236, 72, 153, 0.15));
}

.pricing-footer {
    padding: var(--spacing-xl);
    padding-top: 0;
}

.pricing-footer .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-primary) 0%, #db2777 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}

.pricing-footer .btn:active {
    transform: translateY(0);
}

.pricing-footer .btn::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;
}

.pricing-footer .btn:hover::before {
    left: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    font-size: 1.125rem;
    color: var(--rose-text);
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(253, 242, 248, 0.5);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.gallery-item {
    aspect-ratio: 1;
    background-color: var(--rose-light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    font-size: 0.875rem;
    color: var(--rose-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.2), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(253, 164, 175, 0.25);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(236, 72, 153, 0.35);
}

.contact-card.opening-hours {
    grid-column: 1 / -1;
}

.contact-card.opening-hours p {
    color: var(--rose-text);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--rose-primary);
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: top;
}

.contact-card h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.contact-card p {
    color: var(--rose-text);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

.contact-card small {
    font-size: 0.75rem;
    color: var(--rose-text-light);
}

.opening-note {
    margin-bottom: var(--spacing-md);
}

.opening-times {
    font-size: 0.875rem;
}

.time-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.map-container {
    margin-top: var(--spacing-xl);
}

.map-container h3 {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Reservation Form */
.reservation-form {
    max-width: 500px;
}

.form-container {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(253, 164, 175, 0.3);
    padding: var(--spacing-2xl);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-primary), var(--rose-accent));
    border-radius: 1rem 1rem 0 0;
}

.form-container h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rose-text);
}

.form-description {
    font-size: 0.9375rem;
    color: var(--rose-text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--rose-text);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    font-family: inherit;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-primary);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    margin-top: var(--spacing-md);
}

/* Contact Footer */
.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.instagram-link {
    text-align: center;
}

.instagram-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--rose-text-light);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.instagram-link a:hover {
    opacity: 0.8;
    color: var(--rose-text);
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 0.25rem;
    border-radius: var(--border-radius);
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-icon svg {
    width: 1rem;
    height: 1rem;
}

.logo-container {
    width: 8rem;
    height: 8rem;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.contact-actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.contact-actions p {
    margin-bottom: var(--spacing-lg);
    color: var(--rose-text-light);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, #1a1f2e 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4,
.footer-section h5 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-title {
    font-size: 1.25rem;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.footer-motto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.footer-motto:hover {
    transform: translateX(4px);
}

.footer-motto svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--rose-primary);
    transition: transform 0.3s ease;
}

.footer-motto:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.footer-motto p {
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.contact-item:hover {
    color: var(--rose-secondary);
    transform: translateX(4px);
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    transition: transform 0.3s ease;
}

.contact-item:hover svg {
    transform: scale(1.1);
    color: var(--rose-primary);
}

.opening-hours p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.opening-notice {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(236, 72, 153, 0.2);
    color: var(--rose-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    margin-top: var(--spacing-md);
}

.opening-notice svg {
    width: 0.75rem;
    height: 0.75rem;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: var(--spacing-2xl) 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
    font-size: 0.95rem;
    animation: fadeInDown 0.4s ease-out;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert p {
    margin: 0;
    line-height: 1.4;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
    line-height: 1.4;
}

.alert li {
    margin-bottom: 0.25rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .hero-section::before,
    .hero-section::after {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-card {
        padding: var(--spacing-xl);
    }
    
    .services-list-columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .services-list-column li {
        padding: 1rem 0;
        font-size: 0.9375rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-card {
        padding: var(--spacing-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-container {
        padding: var(--spacing-xl);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .logo-container {
        width: 6rem;
        height: 6rem;
        margin: 0 auto;
    }
    
    .about-section::before,
    .about-section::after {
        display: none;
    }
    
    .card-content {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 40px;
        height: 3px;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.4375rem 1rem;
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .service-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .pricing-header {
        padding: var(--spacing-lg);
    }
    
    .price {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: var(--spacing-md);
    }
    
    .form-container {
        padding: var(--spacing-lg);
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Touch targets optimization for mobile */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .mobile-nav-link,
    .gallery-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    .service-card,
    .pricing-card,
    .contact-card {
        min-height: auto;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-content,
    .hero-badge {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }
    
    .btn-secondary,
    .btn-outline {
        border-width: 2px;
    }
}
