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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.navbar .logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ecf0f1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #555;
}

/* Brands Section */
.brands {
    background-color: white;
}

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

.brand-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-style: italic;
}

.brand-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.brand-link {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.brand-link:hover {
    color: #764ba2;
}

/* Approach Section */
.approach {
    background-color: #f8f9fa;
}

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

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    color: #555;
}

/* Contact Section */
.contact {
    background-color: white;
    text-align: center;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-email a {
    color: #667eea;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #3498db;
    transition: color 0.3s;
}

footer a:hover {
    color: #ecf0f1;
}

/* Brand Pages */
.brand-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.lucenci-hero {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
}

.sillygoose-hero {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #2c3e50;
}

.brand-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.brand-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.brand-intro {
    background-color: white;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.brand-focus {
    background-color: #f8f9fa;
}

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

.focus-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.focus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.focus-item p {
    color: #555;
}

.brand-science {
    background-color: white;
}

.science-list {
    max-width: 900px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.science-list li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.science-list strong {
    color: #2c3e50;
}

.brand-commitment {
    background-color: #f8f9fa;
    text-align: center;
}

.brand-commitment p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
}

.commitment-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background-color: #667eea;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.brand-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.brand-cta h2 {
    color: white;
}

.brand-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.brand-values {
    background-color: white;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #555;
}

.brand-fun {
    background-color: #f8f9fa;
}

.brand-fun p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
}

.fun-list {
    max-width: 900px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.fun-list li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .brand-hero h1 {
        font-size: 2.5rem;
    }

    .brand-hero-subtitle {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .brand-grid,
    .approach-grid,
    .focus-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
