/* CSS Variables */
:root {
    --dark-navy: #0a192f;
    --light-slate: #ccd6f6;
    --soft-gold: #e6c589;
    --off-white: #f8f7f2;
    --natural-green: #52665A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-navy);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

#header.scrolled {
    background-color: var(--off-white);
    box-shadow: 0 2px 20px rgba(10, 25, 47, 0.1);
}

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

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navigation a:hover {
    color: var(--natural-green);
}

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

.navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a3a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(230, 197, 137, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(82, 102, 90, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--light-slate);
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background-color: var(--light-slate);
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--light-slate);
    border-bottom: 2px solid var(--light-slate);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    position: relative;
}

.content-section:nth-child(2) {
    background: linear-gradient(180deg, var(--dark-navy) 0%, var(--off-white) 100%);
    margin-top: -100px;
    padding-top: 8rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.section-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Brand Section */
.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.brand-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--natural-green) 0%, var(--soft-gold) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(82, 102, 90, 0.2);
}

.nature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

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

.philosophy-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 102, 90, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(82, 102, 90, 0.15);
    border-color: var(--natural-green);
}

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

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--dark-navy);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--natural-green);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--natural-green);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background-color: var(--natural-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(82, 102, 90, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-navy);
    color: var(--light-slate);
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-info {
    text-align: center;
}

.company-address {
    font-size: 0.85rem;
    color: var(--light-slate);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navigation ul {
        gap: 1rem;
    }
    
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
