* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* Navigation */
/* NAV */
/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 50px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
}

.nav-toggle {
    display: none;
    font-size: 26px;
    background: transparent;
    border: none;
    color: #d4af37;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #d4af37;
    background: rgba(212,175,55,0.08);
}

/* IMPORTANT: keep hero pushed below fixed nav */
.hero {
    padding-top: 120px;
}

/* MOBILE */
@media (max-width: 768px) {
    .nav {
        padding: 16px 18px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        gap: 10px;

        background: rgba(0,0,0,0.96);
        border-top: 1px solid rgba(212,175,55,0.25);
        padding: 14px 16px 18px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        background: rgba(255,255,255,0.03);
    }
}

/* Make sure hero isn't hidden behind fixed nav */
    .hero {
    min-height: 100vh;
    padding-top: 120px;   /* pushes content below navbar */
    padding-left: 20px;
    padding-right: 20px;

    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1600&q=80');

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* MOBILE NAV */
@media (max-width: 768px) {
    .nav {
        padding: 16px 18px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.95);
        border-top: 1px solid rgba(212,175,55,0.25);

        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px 18px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
    }
}

/* Services Section */
.services {
    padding: 100px 50px;
    text-align: center;
    background-color: #1a1a1a;
}

.services h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    color: #d4af37;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    padding: 30px;
    border: 1px solid #d4af37;
    border-radius: 15px;
    transition: 0.3s ease;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}
/* Single Barber Section */
.barber-single {
    padding: 100px 50px;
    background-color: #111;
}

.barber-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.barber-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #d4af37;
}

.barber-text {
    max-width: 500px;
}

.barber-text h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 10px;
}

.barber-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.barber-text p {
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}
/* Testimonials Section */

.testimonials {
    padding: 100px 50px;
    background-color: #1a1a1a;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #d4af37;
    transition: 0.3s ease;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ccc;
}

.testimonial-card h4 {
    color: #d4af37;
}

/* Hover Effect */

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}
/* Contact Section */
.contact {
    padding: 100px 50px;
    background: #111;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    color: #d4af37;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.contact-info {
    background: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 20px;
    padding: 30px;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
}

.hours {
    margin: 20px 0;
    padding-top: 10px;
    border-top: 1px solid rgba(212,175,55,0.25);
}

.hours h4 {
    margin-bottom: 10px;
    color: #d4af37;
}

.contact-form {
    background: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 20px;
    padding: 30px;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.35);
    background: #111;
    color: white;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212,175,55,0.25);
}

.contact-form button {
    border: none;
    cursor: pointer;
    width: 100%;
}

.form-note {
    margin-top: 12px;
    font-size: 12px;
    color: #999;
}

/* Footer */
.footer {
    background: #0b0b0b;
    text-align: center;
    padding: 25px 15px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer p {
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
html {
  scroll-behavior: smooth;
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.3s ease;
    display: inline-block;
}

/* Gold Button */
.gold {
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    color: black;
}

.gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
}

/* Outline Button */
.outline {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

.outline:hover {
    background: #d4af37;
    color: black;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d4af37;
}

.logo img {
    height: 40px;
    width: auto;
}
.service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

/* Floating Book Button */

.floating-book {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(45deg, #d4af37, #f5d76e);
    color: black;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: 0.3s ease;
    z-index: 999;
}

.floating-book:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(212,175,55,0.6);
}