/* CSS Variables for Design Tokens */
:root {
    --primary: #c59d5f; /* Gold/Yellow Accent */
    --primary-hover: #e0b472;
    --dark: #111111;
    --light: #f9f9f9;
    --grey: #666666;
    --light-grey: #e5e5e5;
    --white: #ffffff;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    tracking-wider: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border: 1px solid var(--dark);
}

.btn-dark:hover {
    background-color: #222;
    border-color: #222;
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 20px;
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
}

@media (min-width: 1024px) {
    .grid-6 {
        grid-template-columns: repeat(6, 1fr); /* 6 columns on large screens */
    }
}

@media (max-width: 768px) {
    .grid-5 {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .grid-6 {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}

/* HEADER */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.logo-text p {
    font-size: 10px;
    color: var(--grey);
    letter-spacing: 0.05em;
}

.logo-accent {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--primary);
    transform: rotate(45deg);
    position: absolute;
    left: -25px;
    top: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
}

nav a {
    color: var(--dark);
    padding: 5px 0;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: none;
    flex-direction: column;
    min-width: 160px;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    padding: 8px 15px;
    font-size: 12px;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Make background softer */
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.5));
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-content .subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.hero-content .title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.hero-content .title span {
    color: var(--primary); /* Highlight 'A' or use standard color */
}

.hero-content .tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.hero-content .description {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.brand-logo {
    background-color: var(--dark);
    color: var(--white);
    padding: 15px 30px;
    text-align: center;
    border-radius: 4px;
}

.brand-logo span {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: block;
}

.brand-logo p {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 0.05em;
}

/* FEATURES SECTION */
.features {
    background-color: var(--light);
    padding: 40px 0;
    border-bottom: 1px solid var(--light-grey);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(197, 157, 95, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 11px;
    color: var(--grey);
}

/* PRODUCTS SECTION */
.products {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.section-header .title {
    font-size: 28px;
    font-weight: 800;
    margin-top: 5px;
}

.product-grid {
    margin-top: 30px;
}

.product-card {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    background-color: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.product-card:hover .arrow-btn {
    background-color: var(--primary);
}

/* FOOTER */
footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hover Effects Enhancements */
.product-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-item {
    transition: all 0.3s ease;
}

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

.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

