/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #C9A227;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #C9A227;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    border-radius: 0;
}

.btn:hover {
    background: #B8911F;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-section .btn {
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

/* About Section */
.about-section {
    background: #f8f8f8;
    padding: 6rem 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: #C9A227;
    margin: 0 auto 3rem;
}

.about-section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    background: #fff;
    padding: 6rem 0;
}

.story-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.pull-quote {
    background: #f8f8f8;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #C9A227;
    font-style: italic;
}

.pull-quote p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.pull-quote footer {
    color: #C9A227;
    font-weight: 600;
    font-style: normal;
}

/* Process Section */
.process-section {
    background: #f8f8f8;
    padding: 6rem 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #666;
}

.process-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pillar-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar-item h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.pillar-item p {
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 6rem 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    padding: 0.8rem 1.5rem;
    border: 2px solid #C9A227;
    color: #C9A227;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #C9A227;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C9A227;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

footer img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

footer p {
    color: #ccc;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .about-section,
    .story-section,
    .process-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .process-pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pull-quote {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .pull-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Additional hover effects */
.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #C9A227;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-item {
    position: relative;
}

.pillar-item:hover::before {
    transform: scaleX(1);
}