﻿/* ==== GLOBAL STYLES ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

section {
    padding: 70px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* ==== HERO SECTION ==== */
.hero {
    background: linear-gradient(135deg, #2b2e4a, #53354a);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

    .hero h1 {
        font-size: 3rem;
        animation: fadeInDown 1.2s ease forwards;
    }

    .hero p {
        font-size: 1.2rem;
        margin-top: 12px;
        animation: fadeIn 1.8s ease forwards;
    }

/* ==== ANIMATIONS ==== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

/* ==== ABOUT CONTENT ==== */
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

    .about-img img {
        width: 100%;
        border-radius: 12px;
    }

.about-text {
    flex: 2;
    min-width: 300px;
}

/* ==== CALL TO ACTION ==== */
.cta {
    text-align: center;
    background: #B68D40;
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
}

    .cta a {
        background: #fff;
        color: #B68D40;
        padding: 12px 30px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 6px;
        transition: 0.3s;
    }

        .cta a:hover {
            background: #f5f5f5;
            transform: scale(1.05);
        }

/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}

/* LOCATION SECTION */
.location-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

    .location-text h3 {
        margin-top: 20px;
        color: #2b2e4a;
    }

    .location-text ul {
        list-style: none;
        padding-left: 0;
        margin-top: 10px;
    }

        .location-text ul li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

            .location-text ul li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: #ff6e6c;
                font-weight: bold;
            }

.location-img {
    flex: 1;
    min-width: 300px;
}

    .location-img img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .location-flex {
        flex-direction: column;
    }
}

/* ANIMATED LIST ITEMS */
.animated-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

    .animated-list li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        opacity: 0; /* start hidden */
        transform: scale(0.5);
    }

        /* Active class triggers animation */
        .animated-list li.active {
            animation: zoomIn 0.6s forwards;
        }

        .animated-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #ff6e6c;
            font-weight: bold;
        }

        /* STAGGERED DELAY */
        .animated-list li:nth-child(1) {
            animation-delay: 0.2s;
        }

        .animated-list li:nth-child(2) {
            animation-delay: 0.4s;
        }

        .animated-list li:nth-child(3) {
            animation-delay: 0.6s;
        }

        .animated-list li:nth-child(4) {
            animation-delay: 0.8s;
        }

        .animated-list li:nth-child(5) {
            animation-delay: 1s;
        }

        .animated-list li:nth-child(6) {
            animation-delay: 1.2s;
        }

/* ZOOM IN KEYFRAMES */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.animated-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .animated-paragraph.active {
        opacity: 1;
        transform: translateY(0);
    }
/* Section headings */
section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #C45C3D;
}

/* Animated List */
.animated-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

    .animated-list li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
        opacity: 0;
        transform: scale(0.5);
    }

        .animated-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #B68D40;
            font-weight: bold;
        }

        .animated-list li.active {
            animation: zoomIn 0.6s forwards;
        }

/* Paragraph animation */
.animated-paragraph {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .animated-paragraph.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Contact list styling */
.contact-list {
    list-style: none;
    padding-left: 0;
}

    .contact-list li {
        margin-bottom: 8px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .contact-list a {
        color: #B68D40;
        text-decoration: none;
    }

        .contact-list a:hover {
            text-decoration: underline;
        }

/* Zoom keyframes */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width:900px) {
    section h2 {
        font-size: 1.7rem;
    }
}
