* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ebebe8;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgb(0 0 0 / 24%), rgb(0 0 0 / 50%)), url(../img/banner.png) center center / cover no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 16px;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    color: #f5f5f5;
}

.tagline {
    margin-top: 25px;
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 2px;
}

.btn-group {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold {
    background: #d4af37;
    color: #000;
}

.btn-outline {
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn:hover {
    transform: translateY(-3px);
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo img {
    display: inline-block;
    max-width: 100px;
    width: 100px;
    margin: 0 auto;
}

/* ABOUT */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: #727272;
}


.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gallery img:hover {
    transform: scale(1.03);
}

.gallery img {
    width: 33.33%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

/* CONTACT */

.contact-box {
    background: #111;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-box h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
}

.contact-box p {
    margin-bottom: 15px;
    color: #ddd;
    font-size: 1.05rem;
}

.contact-box strong {
    color: #fff;
}

/* FOOTER */

footer {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(145deg, #1a0a00, #2e1200, #1a0a00);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Footer / Contact Card */
.contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.contact-card {
    background: linear-gradient(145deg, #1a0a00, #2e1200, #1a0a00);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 800px;
    width: 100%;
    border: 1px solid #c9973055;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #c9973033 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card-glow-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #c9973022 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.75rem;
}

.brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #f0d080;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.brand-sub {
    font-size: 12px;
    color: #c9973088;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 3px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9973044, #c9973088, #c9973044, transparent);
    margin: 1.5rem 0;
}

.divider-sm {
    height: 0.5px;
    background: #c9973022;
    margin: 0.25rem 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.75rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #c9973015;
    border: 0.5px solid #c9973040;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    color: #c99730;
}

.info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    padding-top: 2px;
    word-break: break-word;
}

.info-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9973088;
}

.info-value {
    font-size: 13.5px;
    color: #e8d5a0;
    font-weight: 400;
}

.info-value a {
    color: #e8d5a0;
    text-decoration: none;
}

.info-value a:hover {
    color: #f0d080;
}

.cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.btn-gold {
    background: linear-gradient(135deg, #c99730, #e8c060);
    color: #1a0800;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity 0.15s;
}

.btn-gold:hover {
    opacity: 0.88;
}

.btn-outline {
    background: transparent;
    color: #c99730;
    border: 1px solid #c9973066;
    border-radius: 10px;
    padding: 11px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.15s, border-color 0.15s;
}

.btn-outline:hover {
    background: #c9973018;
    border-color: #c9973099;
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-label {
    font-size: 11px;
    color: #c9973066;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 4px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #c9973015;
    border: 0.5px solid #c9973040;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #c99730;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.social-btn:hover {
    background: #c9973030;
    border-color: #c9973080;
    color: #f0d080;
}

.reg-badge {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 11px;
    color: #f0b100;
    letter-spacing: 0.06em;
}

.about-text h3 {
    color: #d4af37;
}

/* ===================== */
/* RESPONSIVE BREAKPOINTS */
/* ===================== */

/* Tablets / small laptops */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
}

/* Mobile (phones, up to 768px) */
@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
        padding: 40px 16px;
        background-position: 30% center;
        background-size: cover;
    }

    .hero-logo img {
        max-width: 80px;
        width: 80px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 5px;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .btn-group {
                display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 25px;
    }

    .btn {
        /* width: 100%; */
        text-align: center;
        padding: 13px 20px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text h3 {
        color: #d4af37;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery {
        flex-direction: column;
    }

    .gallery img {
        width: 100%;
    }

    .contact-box {
        padding: 25px;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .cta-group {
        grid-template-columns: 1fr;
    }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 17px;
    }

    .social-row {
        gap: 8px;
    }
}















.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: auto;
    margin-bottom: 80px;
}

.brand-card {
    width: 100%;
    max-width: 420px;
    margin: auto;
    padding: 80px 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.brand-content p {
    font-size: 18px;
    line-height: 1.8;
}

.brand-logo img {
    height: 40px;
    margin-bottom: 5px;
    object-fit: scale-down;
}

.brand-product-logo img {
    height: 50px;
    object-fit: scale-down;
}

.brand-card:nth-child(1) {
    background-image: url('../img/frame.png');
    animation-delay: 0.15s;
}

.brand-card:nth-child(2) {
    background-image: url('../img/frame.png');
    animation-delay: 0.30s;
}

.brand-card:nth-child(3) {
    background-image: url('../img/frame.png');
    animation-delay: 0.45s;
}

.brand-card:nth-child(4) {
    background-image: url('../img/frame.png');
    animation-delay: 0.60s;
}




.brand-content p {
    line-height: 1.4;
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
}

.card-brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.card-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px 0 8px;
}

.btn-explore {
    display: inline-block;
    border: none;
    color: #5a3e0a;
    background: linear-gradient(135deg, #c9a84c, #f5d98b, #c9a84c);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-position .4s ease, box-shadow .3s ease, transform .2s ease;
    box-shadow: 0 4px 16px rgba(201, 168, 76, .4);
    cursor: pointer;
}

.btn-explore:hover {
    background-position: 100% 0;
    box-shadow: 0 6px 24px rgba(201, 168, 76, .6);
    transform: translateY(-2px);
}

.golden-bg {
    background: linear-gradient(145deg, #1a0a00, #2e1200, #1a0a00);
}

.pt-50 {
    padding-top: 50px;
}

@media (max-width: 768px) {
     .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 425px) {
     .brands-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brands-grid{
        padding-bottom: 40px;
    }
}