/* ==============================
   GALI PIERCING - MAIN STYLE
   ============================== */


:root {

    --black: #111111;
    --dark: #1c1c1c;
    --gold: #c9a227;
    --white: #ffffff;
    --gray: #f5f5f5;
    --text: #333333;

}


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Heebo', sans-serif;
    direction: rtl;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;

}


a {

    text-decoration: none;
    color: inherit;

}


img {

    max-width: 100%;
    display: block;

}


.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}



/* ==============================
   HEADER
   ============================== */


.header {

    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);

}


.header .container {

    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}



.logo img {

    width: 130px;

}



.nav ul {

    list-style: none;
    display: flex;
    gap: 35px;

}


.nav a {

    color: white;
    font-weight: 500;
    transition: .3s;

}


.nav a:hover {

    color: var(--gold);

}



.mobile-menu {

    display: none;
    color: white;
    font-size: 30px;

}
/* ==============================
   HERO SECTION
   ============================== */


.hero {

    height: 100vh;
    min-height: 650px;
    background:
    url("../images/hero.webp") center/cover no-repeat;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}



.hero-overlay {

    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.75)
    );

}



.hero-content {

    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding-top: 80px;

}



.hero h1 {

    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;

}



.hero p {

    font-size: 22px;
    font-weight: 300;
    margin-bottom: 40px;

}




.hero-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

}




.btn {

    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
    display: inline-block;

}



.btn:hover {

    transform: translateY(-4px);

}



.btn.gold {

    background: var(--gold);
    color: white;

}



.btn.dark {

    background: white;
    color: var(--black);

}






/* ==============================
   GENERAL SECTIONS
   ============================== */


.section {

    padding: 100px 0;

}



.section-title {

    text-align: center;
    margin-bottom: 60px;

}



.section-title h2 {

    font-size: 42px;
    color: var(--black);
    margin-bottom: 10px;

}



.section-title p {

    color: #777;

}






/* ==============================
   ABOUT
   ============================== */


.about-content {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}



.about-text p {

    margin-bottom: 20px;
    font-size: 18px;

}



.about-image img {

    border-radius: 20px;

}






/* ==============================
   SERVICES
   ============================== */


.services {

    background: var(--gray);

}



.services-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;

}



.service-card {

    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);

}



.service-card:hover {

    transform: translateY(-10px);

}



.icon {

    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;

}



.service-card h3 {

    margin-bottom: 15px;
    font-size: 24px;

}
/* ==============================
   WHY SECTION
   ============================== */


.why {

    background: white;

}



.features {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;

}



.feature {

    text-align: center;
    padding: 30px;

}



.feature h3 {

    color: var(--gold);
    margin-bottom: 15px;
    font-size: 24px;

}





/* ==============================
   GALLERY
   ============================== */


.gallery {

    background: var(--gray);

}



.gallery-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;

}



.gallery-item {

    overflow: hidden;
    border-radius: 18px;

}



.gallery-item img {

    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;

}



.gallery-item:hover img {

    transform: scale(1.08);

}






/* ==============================
   FAQ
   ============================== */


.faq-item {

    max-width: 800px;
    margin: 0 auto 25px;
    padding: 25px;
    background: var(--gray);
    border-radius: 15px;

}



.faq-item h3 {

    margin-bottom: 10px;
    color: var(--black);

}






/* ==============================
   CONTACT
   ============================== */


.contact {

    text-align: center;

}



.contact-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;

}



.instagram a {

    color: var(--gold);
    font-weight: 700;

}






/* ==============================
   WHATSAPP FLOAT
   ============================== */


.whatsapp-float {

    position: fixed;
    bottom: 25px;
    left: 25px;

    background: #25D366;
    color: white;

    padding: 15px 25px;
    border-radius: 50px;

    font-weight: 700;

    z-index: 999;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

}






/* ==============================
   FOOTER
   ============================== */


.footer {

    background: var(--black);
    color: white;
    padding: 35px 0;
    text-align: center;

}



.footer-links {

    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;

}



.footer a:hover {

    color: var(--gold);

}







/* ==============================
   MOBILE
   ============================== */


@media(max-width:768px){


.header .container {

    height: 70px;

}



.nav {

    display:none;

}



.mobile-menu {

    display:block;

}



.hero {

    min-height:600px;

}



.hero h1 {

    font-size:40px;

}



.hero p {

    font-size:18px;

}



.about-content {

    grid-template-columns:1fr;

}



.services-grid {

    grid-template-columns:1fr;

}



.features {

    grid-template-columns:1fr;

}



.gallery-grid {

    grid-template-columns:1fr;

}



.section {

    padding:70px 0;

}



.section-title h2 {

    font-size:34px;

}


}
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: .7s ease;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}


.lightbox {

    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2000;

}


.lightbox img {

    max-width:90%;
    max-height:90%;
    border-radius:15px;

}


.nav.active {

    display:block;

}