* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, "Times New Roman", serif;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, "Times New Roman", serif;
    background: #ffffff;
    color: #333;
    line-height: 1.7;
}

/* HERO SECTION */
.about-hero {
    position: relative;
    height: 60vh;
    background: url('../images/lux2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    animation: fadeDown 1.2s ease;
}

.hero-title {
    font-size: 48px;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

/* ABOUT SECTION */
.about-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1000px;
    margin: auto;
}

.about-heading {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

/* TEXT EFFECT */
.about-text {
    font-size: 20px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
}

/* ANIMATION */
.animate {
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }
    .about-heading {
        font-size: 28px;
    }
}
