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

body {
    font-family: 'Garamond', 'Georgia', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
}

.navbar {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 2rem;
    gap: 0.5rem;
}

.hero {
    height: calc(100vh - 64px);
}

.lang-toggle {
    display: flex;
    gap: 0.5rem;
}

.lang-toggle button {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}


.lang-toggle button:hover {
    background: #1a1a1a;
    color: #fff;
}

.lang-toggle button.active {
    background: #1a1a1a;
    color: #fff;
}

.hero {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 4rem;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.logo-container {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    z-index: 2;
}

.logo-container svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 10rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: none;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #666;
    font-style: italic;
    letter-spacing: 1px;
}

.divider {
    width: 400px;
    height: 2px;
    background: #d4af37;
    margin: 2rem auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 2px solid #1a1a1a;
}

.cta-button:hover {
    background: transparent;
    color: #1a1a1a;
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 4rem;
}

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

.hours-card {
    background: white;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.hours-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.hours-card h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.day {
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.time {
    color: #666;
}

.prices-section {
    background: white;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-table thead {
    background: #1a1a1a;
    color: white;
}

.price-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.price-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr {
    transition: background 0.2s ease;
}

.price-table tbody tr:hover {
    background: #fafafa;
}

.service-name {
    font-weight: 500;
    color: #1a1a1a;
}

.price-value {
    font-weight: 500;
    color: #d4af37;
    font-size: 1.1rem;
}

.turnaround {
    color: #666;
    font-size: 0.95rem;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.8rem 0;
    font-size: 1rem;
    color: #ccc;
    letter-spacing: 1px;
}

.contact-info strong {
    color: #d4af37;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .divider {
        width: 200px
    }

    .logo-container {
        width: 180px;
        height: 180px;
    }

    .hero h1 {
        font-size: 5rem;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 2rem;
    }

    .price-table {
        font-size: 0.9rem;
    }

    .price-table th,
    .price-table td {
        padding: 1rem;
    }

    .price-table th:nth-child(3),
    .price-table td:nth-child(3) {
        display: none;
    }
}
