/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px;
}

.hero-container {
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    color: #2C3E2D;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #5C6D5D;
    margin-bottom: 3rem;
    font-style: italic;
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2C3E2D;
    color: white;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #1A2F24;
    transform: translateY(-2px);
}

/* Introduction Section */
.intro-section {
    padding: 120px 0;
    background-color: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-image {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 0.5s;
}

.intro-image:before {
    content: "";
    position: absolute;
    top: -2rem;
    right: -2rem;
    bottom: 2rem;
    left: 2rem;
    border: 1px solid rgba(44, 62, 45, 0.1);
    z-index: -1;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.intro-content {
    padding-right: 2rem;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.5s;
}

.intro-title {
    font-size: 3rem;
    color: #2C3E2D;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #5C6D5D;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Featured Section */
.featured-section {
    padding: 120px 0;
    background-color: #F8F8F6;
}

.featured-product {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.product-image {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-category {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2C3E2D;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    color: #2C3E2D;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.1rem;
    color: #5C6D5D;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Experience Preview Section */
.experience-preview {
    padding: 120px 0;
    background-color: white;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.preview-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #F8F8F6;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.preview-card:nth-child(1) { animation: fadeInUp 1s ease forwards 0.2s; }
.preview-card:nth-child(2) { animation: fadeInUp 1s ease forwards 0.4s; }
.preview-card:nth-child(3) { animation: fadeInUp 1s ease forwards 0.6s; }

.preview-card:hover {
    transform: translateY(-10px);
}

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

.preview-card h3 {
    font-size: 1.8rem;
    color: #2C3E2D;
    margin-bottom: 1rem;
}

.preview-card p {
    color: #5C6D5D;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .intro-grid,
    .featured-product {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .intro-content,
    .product-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
