/* css/style.css */
:root {
    --primary: #d4a574;
    --dark: #1a1a1a;
    --gray: #333;
    --light-gray: #666;
    --bg-dark: #0d0d0d;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    background: rgba(0,0,0,0.95);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212,165,116,0.2);
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: 3px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-appointment {
    background: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-appointment:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.hero-social a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-social a:hover {
    color: var(--primary);
}

.btn-explore {
    background: var(--primary);
    color: var(--dark);
    padding: 1.2rem 3rem;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-explore:hover {
    background: #fff;
    color: var(--dark);
}

/* Section Title */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 4rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--dark);
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.service-tab {
    background: rgba(212,165,116,0.1);
    border: 2px solid transparent;
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.service-tab:hover, .service-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.service-tab.active h6 {
    color: var(--dark);
}

.service-tab i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.service-tab.active i {
    color: var(--dark);
}

.service-tab:hover i {
    color: var(--dark);
}

.service-tab h6 {
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(212,165,116,0.1);
    transform: translateX(10px);
}

.service-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.service-info h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-info p {
    color: var(--light-gray);
    margin: 0;
    font-size: 0.9rem;
}

.service-price {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.about-number {
    font-size: 8rem;
    font-weight: 700;
    color: rgba(212,165,116,0.2);
    line-height: 1;
    margin-bottom: 2rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--dark);
}

.team-member {
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.team-member:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    padding: 2rem 0;
}

.team-info h4 {
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--primary);
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--primary);
}

.cta-section h2 {
    color: var(--dark);
    margin-bottom: 0;
}

.btn-cta {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 1rem 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--dark);
    color: #fff;
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #c49463 100%);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: #fff;
}

.newsletter-form button {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--bg-dark);
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212,165,116,0.2);
}

footer h5 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary);
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .service-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2rem; }
}
