:root {
    --primary: #1a1a1a;
    --secondary: #6b4423;
    --accent: #d4a574;
    --light: #f5f1e8;
    --text-dark: #2a2a2a;
    --text-light: #f5f1e8;
}

* {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    letter-spacing: -0.02em;
}

body {
    background-color: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation Styles */
nav {
    backdrop-filter: blur(10px);
    background: rgba(245, 241, 232, 0.95);
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f1e8 0%, #ede8df 100%);
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://images.unsplash.com/photo-1495521821757-a1efb6729352?w=1200&h=800&fit=crop")
        center/cover;
    opacity: 0.25;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.15);
}

.btn-primary:hover {
    background: #552d14;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 68, 35, 0.25);
}

/* Section Spacing */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Card Styles */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        rgba(107, 68, 35, 0.1),
        rgba(212, 165, 116, 0.1)
    );
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary), transparent);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: 45%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: 45%;
}

@media (max-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--secondary);
    border-radius: 50%;
    top: 0;
    z-index: 10;
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 30px;
    }
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Card */
.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

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

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dark Section */
.dark-section {
    background: var(--primary);
    color: var(--text-light);
}

.dark-section .section-title {
    color: var(--text-light);
}

.dark-section .section-subtitle {
    color: var(--accent);
}

/* Values Grid */
.values-grid {
    display: grid;
    md: grid-cols-2;
    gap: 40px;
}

.value-item {
    display: flex;
    gap: 30px;
}
