:root {
    --bronze: #CD7F32;
    --gold: #D4AF37;
    --marble: #F5F5F0;
    --deep-blue: #1a365d;
    --olive: #556B2F;
    --terracotta: #8B4513;
    --ivory: #FFFFF0;
    --shadow: rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    background-color: var(--marble);
    color: var(--deep-blue);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #2d5986 100%);
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

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

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

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

.nav-links a.active {
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(212, 175, 55, 0.08) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.hero .subtitle {
    font-size: 1.8rem;
    color: var(--bronze);
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Crimson Text', serif;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--deep-blue);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
    color: var(--ivory);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.value-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card p {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 50px var(--shadow);
    border-top: 6px solid var(--gold);
}

.contact-container h1 {
    font-family: 'Cinzel', serif;
    color: var(--deep-blue);
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--marble);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-info {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
}

.contact-info a {
    color: var(--bronze);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: var(--ivory);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

footer p {
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Title */
.page-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--bronze);
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}
