/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: #d4af37; /* Gold Color */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    background-color: #222;
    color: white;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #b5952f;
}

/* Services Section */
#services, #book {
    padding: 5rem 5%;
    text-align: center;
}

#services h2, #book h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: left;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.service-card .price {
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37;
}

/* About Section (Home Barber Abu Dhabi) */
#about {
    padding: 4rem 5%;
    background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    color: #1a1a1a;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

#about h3, #about h4 {
    margin-top: 1.25rem;
    color: #333;
}

#about p {
    max-width: 900px;
    margin-bottom: 1rem;
}

#about ul {
    list-style: disc inside;
    max-width: 900px;
    margin: 0.5rem 0 1.5rem 0;
    padding-left: 1rem;
    color: #444;
}

#about ul li {
    margin: 0.6rem 0;
}

@media (min-width: 900px) {
    #about ul {
        columns: 2;
        column-gap: 40px;
    }
}

/* Booking Form */
#bookingForm {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#bookingForm input, #bookingForm textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#bookingForm textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}