:root {
    --gold: #c89b3c;
    --dark-gold: #9b7020;
    --black: #111111;
    --dark: #191511;
    --cream: #f8f4ec;
    --white: #ffffff;
    --text: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
}


/* ================= NAVBAR ================= */

.luxury-nav {
    padding: 18px 0;
    transition: 0.4s;
    z-index: 999;
}

.luxury-nav.scrolled {
    background: rgba(20, 16, 12, 0.97);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: black;
}

.logo-sub {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 5px;
    text-align: center;
    margin-top: 5px;
}
nav{
    background-color: black;
}

.nav-link {
    color: white !important;
    font-size: 13px;
    margin-left: 25px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.contact-btn {
    border: 1px solid var(--gold);
    padding: 10px 20px !important;
    margin-left: 25px;
}

.contact-btn:hover {
    background: var(--gold);
    color: white !important;
}


/* ================= HERO ================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    background:
        url("images/hero-jewellery.jpg")
        center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(12,10,8,0.92),
            rgba(12,10,8,0.45),
            rgba(12,10,8,0.2)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-small {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero-section h1 {
    font-size: clamp(60px, 7vw, 100px);
    line-height: 0.9;
    font-weight: 500;
}

.hero-section h1 span {
    display: block;
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    max-width: 600px;
    margin-top: 35px;
    font-size: 16px;
    line-height: 1.9;
    color: #ddd;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-gold {
    background: var(--gold);
    color: white;
    padding: 14px 28px;
    border: 1px solid var(--gold);
    border-radius: 0;
    transition: 0.3s;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline-light {
    padding: 14px 28px;
    border-radius: 0;
}

.scroll-down {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    font-size: 9px;
    letter-spacing: 3px;
    z-index: 3;
}

.scroll-down i {
    color: var(--gold);
}


/* ================= COMMON ================= */

.section-padding {
    padding: 110px 0;
}

.section-heading span {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 600;
}

.section-heading h2 {
    font-size: 55px;
    line-height: 1;
    color: var(--black);
    margin-top: 15px;
}

.section-heading h2 em {
    color: var(--gold);
}

.section-heading p {
    max-width: 600px;
    margin: 20px auto;
}


/* ================= ABOUT ================= */

.about-section {
    background: var(--cream);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: -25px;
    background: var(--dark);
    color: white;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.experience-box span {
    color: var(--gold);
    letter-spacing: 4px;
}

.experience-box strong {
    font-family: 'Cormorant Garamond';
    font-size: 28px;
}

.experience-box small {
    color: #aaa;
    letter-spacing: 3px;
}

.about-section p {
    line-height: 1.9;
}

.about-points {
    margin-top: 30px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    color: var(--black);
    font-weight: 500;
}

.about-points i {
    color: var(--gold);
    width: 25px;
}


/* ================= STATS ================= */

.stats-section {
    background: var(--dark);
    padding: 60px 0;
    color: white;
}

.stat-item {
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
    border: 0;
}

.stat-item i {
    color: var(--gold);
    font-size: 25px;
}

.stat-item h3 {
    font-size: 32px;
    margin: 12px 0 0;
}

.stat-item p {
    margin: 0;
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1px;
}


/* ================= COLLECTIONS ================= */

.collections-section {
    background: white;
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 570px;
    background: var(--dark);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}

.collection-card:hover img {
    transform: scale(1.08);
    opacity: 0.65;
}

.collection-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: white;
}

.collection-content span {
    color: var(--gold);
}

.collection-content h3 {
    font-size: 35px;
    margin: 8px 0;
}

.collection-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #ddd;
}

.collection-content a {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

.collection-content a i {
    margin-left: 8px;
}


/* ================= SOURCING ================= */

.sourcing-section {
    background: var(--cream);
}

.sourcing-section p {
    line-height: 1.9;
}

.process-list {
    margin-top: 30px;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.process-item > span {
    font-family: 'Cormorant Garamond';
    color: var(--gold);
    font-size: 25px;
}

.process-item h4 {
    margin: 0;
    font-size: 25px;
    color: var(--black);
}

.process-item p {
    margin: 5px 0 0;
    font-size: 13px;
}

.sourcing-image {
    position: relative;
}

.sourcing-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--dark);
    color: white;
    padding: 30px;
    width: 240px;
}

.floating-card i {
    color: var(--gold);
    font-size: 25px;
}

.floating-card h4 {
    margin-top: 10px;
}

.floating-card p {
    font-size: 12px;
    color: #aaa;
}


/* ================= WHY ================= */

.why-section {
    background: white;
}

.why-card {
    padding: 50px 35px;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.icon-box {
    width: 65px;
    height: 65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 22px;
}

.why-card h3 {
    font-size: 30px;
    color: var(--black);
    margin: 25px 0 15px;
}

.why-card p {
    line-height: 1.8;
    font-size: 14px;
}


/* ================= GALLERY ================= */

.gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.gallery-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* ================= CONTACT ================= */

.contact-section {
    background: var(--dark);
    color: white;
}

.contact-section .section-heading h2 {
    color: white;
}

.contact-section > .container > .row > div > p {
    color: #aaa;
    line-height: 1.9;
}

.contact-info {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item > i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 5px;
}

.contact-item small {
    color: var(--gold);
    letter-spacing: 2px;
}

.contact-item p {
    margin: 5px 0 0;
    color: #ddd;
}

.contact-form {
    background: white;
    padding: 45px;
    color: var(--black);
}

.contact-form label {
    font-size: 12px;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 0;
    padding: 14px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--gold);
}


/* ================= FOOTER ================= */

.footer {
    background: #0d0b09;
    color: #aaa;
    padding: 70px 0 20px;
}

.footer-logo {
    font-family: 'Cormorant Garamond';
    font-size: 38px;
    color: white;
}

.footer-logo span {
    display: block;
    font-family: 'Poppins';
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 5px;
}

.footer p {
    font-size: 13px;
    line-height: 1.8;
}

.footer h5 {
    color: white;
    font-family: 'Poppins';
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    font-size: 13px;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--gold);
}

.footer hr {
    border-color: #333;
    margin: 50px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================= RESPONSIVE ================= */

@media(max-width: 991px) {

    .nav-link {
        margin: 8px 0;
    }

    .contact-btn {
        margin-left: 0;
    }

    .hero-section h1 {
        font-size: 65px;
    }

    .about-image img,
    .sourcing-image img {
        height: 450px;
    }

    .experience-box {
        right: 15px;
    }

    .floating-card {
        left: 15px;
    }

}

@media(max-width: 767px) {

    .section-padding {
        padding: 75px 0;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .hero-section {
        min-height: 850px;
    }

    .hero-section h1 {
        font-size: 55px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item {
        margin-bottom: 30px;
        border: 0;
    }

    .gallery-grid {
        display: block;
    }

    .gallery-item {
        height: 300px;
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}