* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-bg: #000000;
    --light-text: #e5e5e5;
    --gray-text: #999999;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Header */
.navbar {
    background-color: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgb(0 0 0) !important;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    padding: 5px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e5c2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--gray-text);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bg-custom {
    background-color: #0a0a0a;
}

.navbar-nav .nav-link {
    /* color: var(--light-text) !important; */
    font-family: "Poppins", sans-serif;
    color: #009aff;
    margin: 0 5px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 70%);
    position: relative;
    padding: 120px 0 80px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Georgia', serif;
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-highlight {
    color: var(--gold);
    font-weight: 700;
}

.hero-text {
    font-size: 1.15rem;
    /* color: var(--gray-text); */
    color: #FFF;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 550px;
}

.cont {
    text-align: left;
}

.btn-explore {
    background: var(--gold);
    color: var(--dark-bg);
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}


.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-explore:hover::before {
    left: 100%;
}

.btn-explore:hover {
    background: #009aff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(55, 149, 212, 0.3);
}

.call svg {
    width: 15px;
    margin: 0px 5px 0px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.jewelry-showcase {
    width: 100%;
    max-width: 550px;
    padding: 30px;
    /* background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%); */
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    /* backdrop-filter: blur(10px); */
    display: flex;
    justify-content: center;
}

.jewelry-showcase img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
    font-weight: bold;
    letter-spacing: 2px;
}

.about-text {
    color: #FFF;
    /* color: var(--gray-text); */
    line-height: 2;
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Catalogue Section */
.catalogue-section {
    padding: 100px 0;
    background: #000000;
}

.catalogue-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 80px;
    font-size: 1.2rem;
    font-style: italic;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.catalogue-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.catalogue-card:hover::before {
    opacity: 1;
}

.catalogue-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.catalogue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-card:hover .catalogue-image {
    transform: scale(1.15);
}

.catalogue-overlay {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 40px 30px 30px;
    z-index: 2;
}

.catalogue-name {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--light-text);
    margin: 0;
    letter-spacing: 1px;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
    position: relative;
}

.lifestyle-title {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #000000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    z-index: 10;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.2);
}

/* Contact Section */
.contact-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    text-align: center;
}

.contact-title {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: bold;
    color: var(--light-text);
    margin-bottom: 60px;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #000000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-text {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-link {
    color: var(--gray-text);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-map {
    width: 100%;
    background: #0a0a0a;
    border-radius: 5px;
    overflow: hidden;
}

.footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright {
    font-family: "Poppins", sans-serif;
    text-align: center;
    color: #FFF;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 15px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1920px) {
    .cont {
        text-align: left;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lifestyle-title {
        text-align: center;
    }

    .cont-left {
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }


    .lifestyle-title {
        font-size: 2.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 15px 0;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .lifestyle-title {
        text-align: center;
    }
}

/* Navbar Toggler */
.navbar-toggler {
    border: 1px solid var(--gold);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-field {
    background-color: transparent !important;
    border: solid 1px #CCC;
    color: #FFF !important;
    border-radius: 3px !important;
}