:root {
    /* Soft, warm color palette */
    --bg-color: #FAF9F6; /* Off-white warm background */
    --surface-color: #FFFFFF;
    --surface-border: #F0EBE1;
    --text-primary: #5A544F; /* Soft brown/dark gray instead of harsh black */
    --text-secondary: #8E8883;
    --accent-color: #FFA577; /* Warm soft orange */
    --accent-gradient: linear-gradient(135deg, #FFB288, #FF8CA0); /* Soft peach to pink */
    
    --font-heading: 'Quicksand', 'M PLUS Rounded 1c', sans-serif;
    --font-body: 'M PLUS Rounded 1c', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-slow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --shadow-soft: 0 10px 30px rgba(110, 90, 70, 0.05);
    --shadow-hover: 0 15px 40px rgba(110, 90, 70, 0.12);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography Enhancements */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #4A443F;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background var(--transition-fast), backdrop-filter var(--transition-fast);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.9);
    border-bottom: 1px solid var(--surface-border);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color var(--transition-fast);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -6px;
    left: 0;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(250,249,246,0.3) 0%, rgba(250,249,246,1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #FFFFFF;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-slow);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 165, 119, 0.25);
    background: var(--accent-gradient);
    color: #FFFFFF;
}

/* Brands Section */
.brands-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.brand-card {
    display: block;
    text-decoration: none;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 30px; /* softer rounded corners */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    opacity: 0;
    transform: translateY(30px);
    padding-bottom: 10px;
}

.brand-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.brand-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Don't crop soft logos aggressively */
    padding: 20px;
    transition: transform 0.6s ease;
}

.brand-card:hover .brand-image img {
    transform: scale(1.05);
}

.brand-info {
    padding: 25px 30px;
    color: var(--text-primary);
}

.brand-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.external-icon {
    font-family: sans-serif;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: 5px;
    color: var(--text-secondary);
}

.brand-card:hover .external-icon {
    opacity: 1;
    transform: translateX(0);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.badge-orange { background: #FFF0E5; color: #FF7B3B; }
.badge-blue { background: #E6F4FB; color: #3A9CDA; }
.badge-pink { background: #FDE8ED; color: #EF6C8B; }
.badge-green { background: #E9F7EF; color: #43A047; }
.badge-gray { background: #F0F0F0; color: #757575; }

.brand-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer Section */
.footer {
    background: #EFECE6; /* Soft warm footer */
    padding: 80px 20px 40px;
    text-align: center;
    border-top: 1px solid #E8E4DD;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: #4A443F;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.footer-bottom {
    color: #A5A09A;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .brands-grid {
        gap: 30px;
    }
}
