/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    /* Replace 'your-background.jpg' with your image filename */
    background-image: url('your-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: transparent;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

/* Scroll offset for anchor links */
section[id] {
    scroll-margin-top: 80px;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #D4AF37;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
    font-family: 'Noto Serif', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-since-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0.5rem 0 0 0;
    font-family: 'Dancing Script', cursive;
    letter-spacing: 1px;
}

.hero-intro {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #D4AF37;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #B8860B;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
}

.features .container {
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-left-color: #B8860B;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #ffffff;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
}

.brands .container {
    position: relative;
    z-index: 1;
}

.brands-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.brands-subtitle {
    font-size: 1.1rem;
    color: #333333;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brands-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.brands-carousel-wrapper::before,
.brands-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
}

.brands-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
}

.brands-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.brands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    padding: 2rem 1.5rem;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    min-width: 220px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 10;
    position: relative;
}

.brand-logo {
    width: 180px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    /* Remove filter to show original logo colors - uncomment below to apply yellow filter */
    /* filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(0deg); */
}

.brand-item:hover .brand-logo {
    transform: scale(1.1);
    /* Uncomment below if using yellow filter */
    /* filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg); */
}

.brand-name-fallback {
    display: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
}

.brand-item:hover .brand-name-fallback {
    color: #B8860B;
}

/* Show fallback text when logo image fails to load */
.brand-logo[style*="display: none"] + .brand-name-fallback,
.brand-item:not(:has(img.brand-logo:not([style*="display: none"]))) .brand-name-fallback {
    display: block;
}

/* Page Header */
.page-header {
    padding: 2rem 0;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.page-header p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
    background-color: rgba(0, 0, 0, 0.9);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.about-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    color: #ffffff;
    position: relative;
    line-height: 1.7;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Scroll Container */
.services-scroll-container {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 60px;
}

.products-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0;
    margin: 0;
}

.products-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-category {
    flex: 0 0 420px;
    min-width: 420px;
}

/* Scroll Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 55, 0.9);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:hover {
    background-color: #D4AF37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.scroll-arrow-left {
    left: -25px;
}

.scroll-arrow-right {
    right: -25px;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

.product-category {
    padding: 0;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    border-top: 4px solid #D4AF37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.product-category:hover {
    transform: translateY(-5px);
    border-top-color: #B8860B;
}

.service-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.product-category h3 {
    font-size: 1.3rem;
    color: #D4AF37;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 600;
}

.product-category p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

.products-note {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px solid #D4AF37;
}

.products-note p {
    color: #ffffff;
    line-height: 1.8;
}

.products-note a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.products-note a:hover {
    text-decoration: underline;
    color: #B8860B;
}

/* Contact Section */
#contact.content-section {
    background-color: #D4AF37;
    padding: 4rem 0;
}

#contact .page-header h2 {
    color: #000000;
}

#contact .page-header p {
    color: #000000;
    opacity: 0.8;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    padding: 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item p {
    color: #000000;
    line-height: 1.7;
    font-size: 1.05rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-note {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-note p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #000000;
    color: #D4AF37;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    border-top: 2px solid #D4AF37;
}

footer p {
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid #D4AF37;
        backdrop-filter: blur(10px);
    }

    .hero-brand-name {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-since-text {
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    .feature-grid,
    #contact.content-section {
        padding: 3rem 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-note {
        padding: 1.5rem;
    }

    .contact-note p {
        font-size: 1rem;
    }

    .services-scroll-container {
        margin: 0 -15px;
        padding: 0 50px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow-left {
        left: 5px;
    }

    .scroll-arrow-right {
        right: 5px;
    }

    .product-category {
        flex: 0 0 350px;
        min-width: 350px;
    }

    .service-image {
        height: 250px;
    }

    .product-category h3 {
        font-size: 1.3rem;
    }

    .product-category p {
        font-size: 1rem;
    }

    .brands-heading {
        font-size: 1.8rem;
    }

    .brands-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .brands-carousel-wrapper::before,
    .brands-carousel-wrapper::after {
        width: 80px;
    }

    .brands-carousel {
        gap: 1.5rem;
        animation-duration: 25s;
    }

    .brand-item {
        padding: 1.5rem 1rem;
        min-height: 100px;
        min-width: 150px;
    }

    .brand-logo {
        width: 140px;
        height: 90px;
    }

    .brand-name-fallback {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .features,
    .content-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-brand-name {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-since-text {
        font-size: 0.9rem;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

    .feature-card,
    .product-category {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .contact-note {
        padding: 1.25rem;
    }

    .contact-note p {
        font-size: 0.95rem;
    }

    .services-scroll-container {
        margin: 0 -15px;
        padding: 0 45px;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
    }

    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }

    .scroll-arrow-left {
        left: 5px;
    }

    .scroll-arrow-right {
        right: 5px;
    }

    .product-category {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .service-image {
        height: 200px;
    }

    .product-category h3 {
        font-size: 1.2rem;
    }

    .product-category p {
        font-size: 0.9rem;
    }

    .brands-carousel-wrapper::before,
    .brands-carousel-wrapper::after {
        width: 50px;
    }

    .brands-carousel {
        gap: 1rem;
        animation-duration: 20s;
    }

    .brand-item {
        padding: 1.2rem 0.8rem;
        min-height: 90px;
        min-width: 120px;
    }

    .brand-logo {
        width: 120px;
        height: 80px;
    }

    .brand-name-fallback {
        font-size: 1rem;
    }

    .brands-heading {
        font-size: 1.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

