
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;500&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0000008a;
    color: #fff;
    overflow-x: hidden;
    background-image: url('../../assets/images/background/barber.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.846);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
   
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.menu-icon {
    color: #d4af37;
    cursor: pointer;
    font-size:35px !important;

}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d4af37;
}

.book-btn {
    color:#d4af37;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #fff;
    color: #000;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
}

.logo{
    margin-top:-25px;
}

@media screen  and (max-width:768px){
    .logo{
        margin-top:0;
    }
}


.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.scissors-container {
    position: relative;
    width: 150px;
    height: 80px;
    margin-bottom: 20px;
}

.scissors {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    stroke: #d4af37;
    stroke-width: 2;
    fill: none;
    width: 60px;
    height: 60px;
}

.line {
    position: absolute;
    width: 150px;
    height: 1px;
    background-color: #d4af37;
}

.line-left {
    top: 30px;
    right: 50%;
    margin-right: 30px;
}

.line-right {
    top: 30px;
    left: 50%;
    margin-left: 30px;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tagline {
    font-size: 14px;
    margin-bottom: 20px;
}

.mustache-container {
    position: relative;
    width: 150px;
    height: 60px;
    margin-bottom: 10px;
}

.mustache {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    stroke: #d4af37;
    stroke-width: 2;
    fill: none;
    width: 60px;
    height: 40px;
}

.services-badge {
    border: 1px solid #d4af37;
    width: 300px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.services-badge::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, transparent 49%, #d4af37 50%, transparent 51%);
}

.services-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    text-transform: lowercase;
}

.established {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
}

.est-text {
    font-size: 12px;
    text-transform: uppercase;
}

.year {
    color: #d4af37;
}

.bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 20px;
}

.styling-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
}

.stylist-badge {
    background-color: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 5px 20px;
    font-size: 12px;
    text-transform: uppercase;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .nav-list {
    display: none;
    background-color: rgb(27, 27, 27);
    width: 100%;
    position: absolute;
    top: 10%;
    margin-top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    z-index: 111111;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: white;
    flex-direction: column;
}

    
    
    .site-title {
        font-size: 40px;
    }
    
    .services-badge {
        width: 240px;
    }
    
    .bottom-content {
        flex-direction: column;
        gap: 15px;
    }
   .nav-container{
    margin-top:-30px !important;
   }
}