:root {
    --bg-color: #111111;
    --text-color: #f0f0f0;
    --accent-color: #ffffff;
    --secondary-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Oswald', sans-serif;
    --container-width: 1200px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: rgba(17, 17, 17, 0.95);
    border-bottom: 1px solid #333;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-align: center;
    border: 2px solid var(--accent-color);
    padding: 10px 20px;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1;
    margin: 5px 0;
}

.logo span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.nav-link:hover {
    color: #888;
}

.nav-btn {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background-color: #ccc;
}

/* Hero */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #333;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #ccc;
}

.btn {
    display: inline-block;
    border: 2px solid var(--accent-color);
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #333;
    margin: 20px auto 0;
}

.price-list {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    margin-bottom: 40px;
}

.price-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-info h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dots {
    flex: 1;
    border-bottom: 1px dotted #444;
    margin: 0 20px;
}

.price-val {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-desc {
    color: #888;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Masters */
.masters {
    padding: 100px 0;
    background-color: var(--secondary-bg);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.masters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.master-card {
    text-align: center;
}

.master-img {
    height: 400px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.master-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.master-card:hover .master-img img {
    filter: grayscale(0%);
}

.master-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.master-card p {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* About */
.about {
    padding: 100px 0;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-img {
    border: 10px solid #fff;
    transform: rotate(3deg);
}

.about-img img {
    width: 100%;
    display: block;
    filter: sepia(50%) grayscale(50%);
}

/* Contact */
.contact {
    padding: 100px 0;
    background-image: url('img/hero.jpg'); /* Reuse hero bg with overlay */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.contact-box {
    position: relative;
    z-index: 1;
    background: #111;
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #333;
}

.contact-box address {
    font-style: normal;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #ccc;
}

.hours {
    margin-bottom: 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 30px 0;
}

.hours h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.hours p {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    margin: 10px auto;
    color: #888;
}

.hours span {
    color: #fff;
    font-weight: bold;
}

.contact-phone {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: bold;
}

.contact-phone:hover {
    color: #ccc;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .masters-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        transform: none;
    }
}
