:root {
    --primary-color: #8B4513; /* SaddleBrown */
    --secondary-color: #D2691E; /* Chocolate */
    --accent-color: #DAA520; /* GoldenRod */
    --text-color: #333;
    --bg-color: #F5F5DC; /* Beige */
    --white-color: #FFFFFF;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Header */
.main-header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.logo {
    width: 180px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.4));
}

/* Hero Section */
.hero {
    background-image: url('hero-image.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--white-color);
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Promo Section */
.promo {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.promo-image {
    flex-basis: 200px;
    text-align: center;
}

.promo-image img {
    max-width: 150px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.promo-text {
    flex: 1;
}

.promo-text h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-top: 0;
}

.promo-text p {
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e8b941;
    transform: translateY(-3px);
}


/* Footer */
.main-footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    text-align: center;
    padding: 20px 0;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-in-out forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }

    .feature-container, .promo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-container {
        flex-direction: column-reverse;
    }
    
    .promo-image {
        margin-top: 30px;
    }
}