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

body {
    background-color: #050B14;
    color: #F8F9FA;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Header Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(5, 11, 20, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1.5px;
    display: block;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: #94A3B8;
    letter-spacing: 4px;
    font-weight: 600;
}

nav a {
    color: #CBD5E1;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.82rem;
    transition: 0.3s;
}

nav a:hover {
    color: #D4AF37;
}

/* Hero Section with Video Overlay */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 11, 20, 0.75), rgba(5, 11, 20, 0.95));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    padding: 6px 16px;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 0.95rem;
    color: #D4AF37;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #E2E8F0;
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* Buttons */
.btn-primary, .btn-gold {
    background-color: #D4AF37;
    color: #050B14;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-primary:hover, .btn-gold:hover {
    background-color: #F3E5AB;
}

.btn-secondary {
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #D4AF37;
    padding: 12px 26px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 3px;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* About Section */
.section {
    padding: 80px 8%;
}

.about-container {
    background: #0A1424;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 40px;
}

.about-header h2 {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.divider {
    height: 2px;
    width: 60px;
    background: #D4AF37;
    margin-bottom: 25px;
}

.about-body p {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.8;
}

.owner-profile {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.owner-info h4 {
    color: #F8F9FA;
    font-size: 1.1rem;
}

.owner-info .role {
    color: #D4AF37;
    font-size: 0.85rem;
}

.owner-info .loc {
    color: #64748B;
    font-size: 0.8rem;
}

.contact-quick p {
    color: #94A3B8;
    font-size: 0.85rem;
}

/* Custom Jewellery Section */
.custom-section {
    background: #060D1A;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.custom-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.sub-heading {
    color: #D4AF37;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.custom-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #F8F9FA;
    margin: 10px 0 15px 0;
}

.custom-text p {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.custom-steps {
    list-style: none;
    margin-bottom: 30px;
}

.custom-steps li {
    display: flex;
    align-items: center;
    color: #94A3B8;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

.custom-steps span {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #D4AF37;
    color: #D4AF37;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    margin-right: 15px;
}

.custom-image-box {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.custom-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Gemstone Showcase Grid */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #0A1424;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-info h3 {
    font-family: 'Cinzel', serif;
    color: #F8F9FA;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.gem-desc {
    font-size: 0.85rem;
    color: #CBD5E1;
    margin-bottom: 20px;
}

.btn-card {
    display: block;
    text-align: center;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 0;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 3px;
    transition: 0.3s;
    margin-top: auto;
}

.btn-card:hover {
    background: #D4AF37;
    color: #050B14;
}

/* Footer */
.footer {
    background: #03070D;
    padding: 60px 8% 20px 8%;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    margin-bottom: 12px;
}

.footer-col .sub {
    font-size: 0.65rem;
    color: #94A3B8;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-col p {
    color: #64748B;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    color: #475569;
    font-size: 0.75rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Prevent horizontal overflow on mobile screens */
html, body {
    overflow-x: hidden;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
        text-align: center;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a {
        margin-left: 0;
        font-size: 0.78rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
        width: 100%;
        max-width: 280px;
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 50px 5%;
    }

    .about-container {
        padding: 20px;
    }

    .owner-profile {
        flex-direction: column;
        gap: 15px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .custom-container {
        grid-template-columns: 1fr;
    }

    .custom-image-box {
        height: 250px;
    }
}