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



/* BODY */

body{
    background: #090909;
    color: #F5F5F5;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}



/* HEADER */

header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    background: rgba(0,0,0,0.4);

    backdrop-filter: blur(10px);
}



/* NAVBAR */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 5%;
}



/* LOGO */

.logo{
    font-size: 1.8rem;

    font-family: 'Poppins', sans-serif;

    font-weight: 600;

    color: #8FFFE3;

    letter-spacing: 2px;
}



/* NAV LINKS */

.nav-links{
    display: flex;
    gap: 30px;

    list-style: none;
}



.nav-links a{
    text-decoration: none;

    color: white;

    transition: 0.3s;
}



.nav-links a:hover{
    color: #3F7A67;
}



/* HERO SECTION */

.hero{
    height: 100vh;

    position: relative;

    overflow: hidden;
}



/* HERO IMAGE */

.hero img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: brightness(40%);
}



/* HERO CONTENT */

.hero-content{
    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);
}



/* HERO TITLE */

.hero-content h1{
    font-size: 5rem;

    line-height: 1;

    margin-bottom: 20px;

    text-transform: uppercase;
}



/* HERO TEXT */

.hero-content p{
    color: #C9C9C9;

    margin-bottom: 30px;

    font-size: 1.1rem;
}



/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 20px;
}



/* PRIMARY BUTTON */

.btn-primary{
    background: #245BFF;

    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 50px;

    transition: 0.3s;
}



.btn-primary:hover{
    background: #3F7A67;

    transform: translateY(-3px);
}



/* SECONDARY BUTTON */

.btn-secondary{
    border: 1px solid #3F7A67;

    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 50px;

    transition: 0.3s;
}



.btn-secondary:hover{
    background: #3F7A67;

    transform: translateY(-3px);
}



/* SECTION TITLE */

.section-title{
    text-align: center;

    margin-bottom: 60px;
}



.section-title h2{
    font-size: 3rem;

    letter-spacing: 3px;
}



/* FEATURED SECTION */

.featured-section{
    padding: 120px 10%;
}



/* PRODUCTS GRID */

.products-grid{

    display: flex;

    flex-direction: column;

    gap: 40px;

}



/* PRODUCT CARD */

.product-card{
    background: #151515;

    border-radius: 20px;

    overflow: hidden;

    transition: 0.4s;
}



.product-card:hover{
    transform: translateY(-10px);
}



/* PRODUCT IMAGE */

.product-card img{

    width: 100%;

    height: 400px;

    object-fit: cover;

}




/* PRODUCT TITLE */

.product-card h3{
    padding: 20px;

    font-size: 1.2rem;
}



/* BANNER SECTION */

.banner-section{
    position: relative;

    height: 70vh;
}



/* BANNER IMAGE */

.banner-section img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: brightness(35%);
}



/* BANNER TEXT */

.banner-text{
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
}



.banner-text h2{
    font-size: 4rem;

    margin-bottom: 20px;
}



/* FOOTER */

footer{
    background: #050505;

    padding: 60px 10%;
}



/* FOOTER CONTENT */

.footer-content{
    display: flex;

    justify-content: space-between;

    align-items: center;
}

@media(max-width:768px){

    .footer-content{

        flex-direction:column;

        text-align:center;

        gap:20px;

    }

}


/* SOCIAL LINKS */

.social-links{
    display: flex;

    gap: 20px;
}



.social-links a{
    text-decoration: none;

    color: white;

    transition: 0.3s;
}



.social-links a:hover{
    color: #8FFFE3;
}



/* GALLERY PAGE */

.gallery-page{
    padding: 150px 10%;
}



/* GALLERY GRID */

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

.masonry-gallery{

    columns: 4 250px;

    column-gap: 15px;

}
@media(max-width: 768px){

    .masonry-gallery{

        columns: 2;

    }

}



.masonry-item{

    break-inside: avoid;

    margin-bottom: 15px;

}



.masonry-item img{

    width: 100%;

    display: block;

    border-radius: 14px;

    transition: 0.4s ease;

}



.masonry-item:hover img{

    transform: scale(1.02);

    filter: brightness(90%);

}



/* GALLERY IMAGES */

.gallery-grid img{
    width: 100%;
    height: 450px;

    object-fit: cover;

    border-radius: 20px;

    transition: 0.4s;
}



.gallery-grid img:hover{
    transform: scale(1.03);
}



/* ABOUT SECTION */

.about-section{
    padding: 150px 10%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}



/* ABOUT IMAGE */

.about-image img{
    width: 100%;

    border-radius: 20px;
}



/* ABOUT TEXT */

.about-text h2{
    font-size: 3rem;

    margin-bottom: 30px;
}



.about-text p{
    color: #C9C9C9;

    line-height: 1.8;

    margin-bottom: 20px;
}



/* CONTACT SECTION */

.contact-section{
    padding: 150px 10%;
}

/* RESPONSIVE */

@media(max-width: 900px){

        .navbar{

        flex-direction: column;

        gap: 15px;

        padding: 15px;

    }

    .nav-links{

        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;

}

}
/* ========================= */
/* ABOUT HERO */
/* ========================= */

.about-hero{

    height: 70vh;

    position: relative;

    overflow: hidden;
}



.about-hero img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: brightness(40%);
}



.about-hero-text{

    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);
}



.about-hero-text h1{

    font-size: 5rem;

    line-height: 1;

    text-transform: uppercase;
}



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

.about-content{

    padding: 120px 10%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}



.about-left img{

    width: 100%;

    border-radius: 20px;
}



.about-right h2{

    font-size: 3rem;

    margin-bottom: 30px;
}



.about-right p{

    color: #C9C9C9;

    line-height: 1.8;

    margin-bottom: 20px;
}



/* ========================= */
/* VALUES SECTION */
/* ========================= */

.values-section{

    padding: 0 10% 120px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}



/* VALUE CARD */

.value-card{

    background: #151515;

    padding: 40px;

    border-radius: 20px;

    transition: 0.4s;
}



.value-card:hover{

    transform: translateY(-10px);

    border: 1px solid #3F7A67;
}



.value-card h3{

    margin-bottom: 20px;

    color: #8FFFE3;

    letter-spacing: 2px;
}



.value-card p{

    color: #C9C9C9;

    line-height: 1.7;
}



/* RESPONSIVE */

@media(max-width: 900px){

    .about-content{

        grid-template-columns: 1fr;

    }

    .values-section{

        grid-template-columns: 1fr;

    }

    .about-hero-text h1{

        font-size: 3rem;

    }

}
/* ========================= */
/* CONTACT HERO */
/* ========================= */

.contact-hero{

    height: 60vh;

    position: relative;

    overflow: hidden;
}



.contact-hero img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: brightness(40%);
}



.contact-hero-text{

    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);
}



.contact-hero-text h1{

    font-size: 5rem;

    line-height: 1;

    text-transform: uppercase;
}



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

.contact-info-box{

    background: #151515;

    padding: 40px;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    gap: 25px;
}



/* TITLE */

.contact-info-box h3{

    color: #8FFFE3;

    letter-spacing: 2px;
}



/* LINKS */

.contact-info-box a{

    text-decoration: none;

    color: white;

    transition: 0.3s;
}



.contact-info-box a:hover{

    color: #3F7A67;

    transform: translateX(5px);
}



/* FORM */

.contact-form{

    background: #151515;

    padding: 40px;

    border-radius: 20px;
}



/* INPUTS */

.contact-form input,
.contact-form textarea{

    width: 100%;

    margin-bottom: 20px;
}



/* BUTTON */

.contact-form button{

    width: 100%;
}



/* RESPONSIVE */

@media(max-width: 900px){

    .contact-hero-text h1{

        font-size: 3rem;

    }

}
/* ========================= */
/* LOCATIONS */
/* ========================= */

.locations-page{

    padding: 150px 10%;

}



.location-card{

    display: grid;

    grid-template-columns: 350px 1fr;

    gap: 40px;

    background: #151515;

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 40px;

}



.location-card img{

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.location-info{

    padding: 40px;

}



.location-info h3{

    margin-bottom: 15px;

    color: #8FFFE3;

}



.location-info p{

    color: #C9C9C9;

    margin-bottom: 25px;

}



.location-btn{

    display: inline-block;

    padding: 12px 24px;

    background: #245BFF;

    color: white;

    text-decoration: none;

    border-radius: 50px;

    margin-right: 15px;

    transition: 0.3s;

}



.location-btn:hover{

    background: #3F7A67;

}



.location-instagram{

    color: #8FFFE3;

    text-decoration: none;

}



@media(max-width:900px){

    .location-card{

        grid-template-columns: 1fr;

    }

}
/* ========================= */
/* CONTACT CARDS */
/* ========================= */

.contact-buttons{

    max-width: 900px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}



.contact-card{

    background: #151515;

    padding: 60px 40px;

    border-radius: 20px;

    text-decoration: none;

    color: white;

    transition: 0.4s;

    border: 1px solid transparent;

    text-align: center;

}



.contact-card:hover{

    transform: translateY(-8px);

    border: 1px solid #3F7A67;

    box-shadow: 0 0 25px rgba(63,122,103,.3);

}



.contact-card h3{

    color: #8FFFE3;

    margin-bottom: 15px;

    letter-spacing: 2px;

    font-size: 1.4rem;

}



.contact-card p{

    color: #C9C9C9;

}



@media(max-width:900px){

    .contact-buttons{

        grid-template-columns: 1fr;

    }

}
img{

    max-width:100%;

    height:auto;

}
@media(max-width: 768px){

    .hero-content h1,
    .about-hero-text h1,
    .contact-hero-text h1{

        font-size: 2.5rem;

    }

}