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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f1eb;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 28.6px;
    letter-spacing: -1.56px;
    color: #000;
}

.brand-icon {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-left: auto;
    margin-right: 0.25rem;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.56px;
    transition: opacity 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.btn-primary {
    background-color: #000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.56px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.56px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Typography */
.label {
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

/* Hidden sections */
.hidden-section {
    display: none;
}

/* Navigation active state */
.nav-menu a.active {
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1a1a1a;
    border-radius: 1px;
}
