/* --- CSS Reset & Variables --- */
:root {
    /* Color Palette - Pastel Tones */
    --bg-color: #fdfcf8;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    
    /* Brand Accents */
    --accent-green: #e0f2f1; /* For Balandda */
    --accent-pink: #fce4ec;  /* For Rocks */
    --accent-beige: #efebe9; /* For Xush */
    --accent-blue: #e3f2fd;  /* For Wholesale */
    
    --btn-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- Layout Utility --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo .highlight {
    color: #888;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

nav a:hover {
    color: #999;
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--text-main);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-main:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* --- About Section --- */
.about-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-section p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Ventures Grid Section --- */
.ventures-section {
    padding: 80px 0;
}

.ventures-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* --- Cards Styling --- */
.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Pastel Backgrounds for Cards */
.card-green { background-color: var(--accent-green); }
.card-pink  { background-color: var(--accent-pink); }
.card-beige { background-color: var(--accent-beige); }
.card-blue  { background-color: var(--accent-blue); }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.card .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 30px;
}

.btn-card {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--text-main);
    border-radius: 4px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.6);
}

.btn-card:hover {
    background: var(--text-main);
    color: var(--white);
}

/* --- Footer --- */
footer {
    padding: 60px 0;
    background-color: #222;
    color: #fff;
    text-align: center;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    color: #aaa;
    margin-bottom: 20px;
}

.email-link {
    font-size: 1.2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 2px;
}

.email-link:hover {
    color: #ccc;
    border-color: #ccc;
}

.footer-bottom {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #555;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .header-content { flex-direction: column; gap: 15px; }
}
/* --- Brand Logos in Cards --- */
.card-logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-logo img {
    max-height: 100%;
    max-width: 85%;
    object-fit: contain;
}

.card-logo .xush-badge {
    height: 48px;
    border-radius: 8px;
}

.rocks-wordmark {
    flex-direction: column;
    gap: 3px;
}

.rocks-title {
    font-family: 'Bebas Neue', 'Arial Narrow', 'Helvetica Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 5px;
    color: #111111;
    line-height: 1;
    text-transform: uppercase;
}

.rocks-sub {
    font-size: 9px;
    color: #888;
    letter-spacing: 2px;
    text-transform: lowercase;
}
