@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
    --primary-bg: #FDFCFB;
    --accent-gold: #C5A059;
    --deep-charcoal: #1A1A1A;
    --soft-white: #FFFFFF;
    --subtle-gray: #757575;
    --glass-effect: rgba(255, 255, 255, 0.8);
}

html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-bg);
    color: var(--deep-charcoal);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
.luxury-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Header & Navbar */
header {
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
}

header.scrolled {
    background: var(--glass-effect);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold) !important;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-link i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: all 0.4s ease;
}

.btn-gold:hover {
    background-color: #b08d48;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    color: white;
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--accent-gold);
    padding: 12px 30px;
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--accent-gold);
    transition: all 0.4s ease;
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: white;
}

/* Hero Section */
.hero-swiper {
    height: 90vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Ambassador Cards */
.ambassador-card {
    background: white;
    border: none;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    margin-bottom: 30px;
}

.ambassador-img-wrapper {
    overflow: hidden;
    position: relative;
}

.ambassador-card img {
    transition: transform 0.8s ease;
}

.ambassador-card:hover img {
    transform: scale(1.05);
}

.ambassador-info {
    padding: 20px;
    text-align: center;
}

.ambassador-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--deep-charcoal);
}

.ambassador-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

/* Section Header */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title .subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

.section-title .line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 20px auto;
}

/* Product Section Enhancement */
.product-showcase {
    background: white;
    padding: 100px 0;
}

.glass-skin-text {
    background: linear-gradient(45deg, #1A1A1A, #C5A059);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
footer {
    background: #111;
    color: #eee;
    padding: 80px 0 20px;
}

footer h4 {
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 300;
}

footer a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
}

@media (max-width: 768px) {
    .hero-swiper {
        height: 70vh;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
        left: 5%;
        right: 5%;
        text-align: center;
        top: 55%;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 15px !important;
        line-height: 1.4;
    }

    .hero-content .subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 3px !important;
    }

    .hero-content .d-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .btn-gold,
    .btn-outline-gold {
        padding: 8px 15px !important;
        font-size: 0.7rem !important;
        width: auto;
        min-width: 140px;
    }

    .hero-swiper .swiper-slide img {
        width: 100vw !important;
        object-fit: cover !important;
        background-color: #000;
    }
}

/* Brand Logo Design */
.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    line-height: 1;
}

.brand-logo .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--deep-charcoal);
    margin: 0;
    transition: all 0.3s ease;
}

.brand-logo .logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-top: -2px;
}

.scrolled .brand-logo .logo-main {
    font-size: 1.5rem;
}

.nav-dashboard .brand-logo .logo-main {
    color: white !important;
}

@media (max-width: 768px) {
    .brand-logo .logo-main {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }
}