/*==========================================
  SALAH SCENTS - STYLE.CSS (PART 1)
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #C8A96A;
    --black: #0F0F0F;
    --white: #ffffff;
    --gray: #9a9a9a;
    --light: #1a1a1a;
    --transition: .4s ease;
    --radius: 12px;
    --shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/*=====================
 HEADER
======================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    width: 170px;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu li a {
    color: #fff;
    transition: .3s;
    font-weight: 500;
    position: relative;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .4s;
}

.menu li a:hover {
    color: var(--primary);
}

.menu li a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons i {
    font-size: 20px;
    transition: .3s;
}

.nav-icons i:hover {
    color: var(--primary);
}

/*=====================
 HERO
======================*/

.hero {
    height: 100vh;
    background: url("../images/hero/banner.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 20px;
}

.hero h4 {
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: #ddd;
    margin-bottom: 35px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.btn:hover {
    background: #fff;
    transform: translateY(-5px);
}

/*=====================
 SECTION TITLE
======================*/

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: #bbb;
}

/*=====================
 PRODUCTS
======================*/

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #181818;
    border-radius: 16px;
    overflow: hidden;
    transition: .4s;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.card h3 {
    padding: 20px 20px 8px;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
}

.card p {
    padding: 0 20px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
}

.shop-btn {
    display: inline-block;
    margin: 20px;
    padding: 12px 28px;
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: .3s;
    border-radius: 50px;
}

.shop-btn:hover {
    background: var(--primary);
    color: #000;
}

/* Continue in Part 2 (Why Us, Newsletter, Footer, WhatsApp, Animations, Utility Classes) */

/*==========================================
  SALAH SCENTS - STYLE.CSS (PART 2)
==========================================*/

/*=====================
 WHY SECTION
======================*/

.why {
    background: #151515;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.box {
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: .35s ease;
}

.box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
}

.box i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    margin-bottom: 12px;
}

.box p {
    color: #bfbfbf;
    font-size: 15px;
}

/*=====================
 NEWSLETTER
======================*/

.newsletter {
    background: linear-gradient(135deg, #0f0f0f, #1b1b1b);
    text-align: center;
}

.newsletter h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 15px;
}

.newsletter p {
    color: #cfcfcf;
    margin-bottom: 35px;
}

.newsletter form {
    max-width: 650px;
    margin: auto;
    display: flex;
    gap: 15px;
}

.newsletter input {
    flex: 1;
    padding: 18px 20px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.newsletter input:focus {
    border-color: var(--primary);
}

.newsletter button {
    padding: 18px 38px;
    border: none;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: .3s;
}

.newsletter button:hover {
    background: #fff;
}

/*=====================
 FOOTER
======================*/

footer {
    background: #090909;
    padding: 80px 0 30px;
}

.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 18px;
}

.footer h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer p {
    color: #b8b8b8;
}

.footer ul li {
    margin-bottom: 12px;
    color: #d5d5d5;
    transition: .3s;
    cursor: pointer;
}

.footer ul li:hover {
    color: var(--primary);
    padding-left: 6px;
}

.social {
    display: flex;
    gap: 15px;
}

.social i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .3s;
    cursor: pointer;
}

.social i:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
}

.copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 25px;
    color: #888;
    font-size: 14px;
}

/*=====================
 WHATSAPP BUTTON
======================*/

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .35);
    animation: pulse 2s infinite;
}

.whatsapp:hover {
    transform: scale(1.08);
}

/*=====================
 SCROLLBAR
======================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 30px;
}

/*=====================
 ANIMATIONS
======================*/

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/*=====================
 UTILITIES
======================*/

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}