/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Core Sans C";
}

body {
background-image: linear-gradient(0deg, #f1f5df 0%, #f1f5df 1%, #fdfff8 100%);
}

/* ===== CONTAINER ===== */
.container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===== LEFT SECTION ===== */
.left-section {
    flex: 1;
    padding: 60px 50px 110px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

/* Right Section inside Left (for mobile) */
.left-section .right-section {
    display: none;
    width: 100%;
    height: auto;
    margin: 20px 0;
    flex: none;
}

.left-section .right-section .building-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Logo */
.logo {
    margin-bottom: 40px;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Coming Soon Label */
.coming-soon {
    font-size: 19px;
    color: #45716f;
    margin-bottom: -10px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
line-height: 53px;
font-weight: 800;
}

.coming-soon-line {
    width: 30px;
    height: 2px;
    background-color: #4a8a7e;
    display: inline-block;
}

/* Main Heading */
.main-heading {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    color: #000;
    margin-bottom: 40px;
    max-width: 90%;
    text-shadow: 0.8px 0 0 #000;
}

/* Decorative Elements */
.decorative-top {
    position: absolute;
    top: -55px;
    right: -35px;
    left: auto;
    width: clamp(300px, 30vw, 450px);
    height: clamp(280px, 28vw, 400px);
    z-index: 1;
    overflow: visible;
    transform: rotate(15deg);
    margin-top: 0;
    opacity: 0.85;
}

.decorative-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 345px;
    height: 100%;
    z-index: 1;
    overflow: visible;
    margin-bottom: -230px;
}

.leaf-svg, .woman-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: -5px;
}

.woman-svg {
        filter: brightness(0.9) opacity(0.3);

}

/* Contact Section */
.contact-section {
    margin-top: 40px;
    z-index: 10;
}

.contact-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 41px;
    height: 41px;
    border-radius: 23%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background-color: #45716f;
}

.social-icon.linkedin {
    background-color: #45716f;
}

.social-icon.instagram {
    background-color: #45716f;
}

.social-icon img {
    width: 18px;
    height: 18px;
}

.social-icon.facebook img {
    width: 22px;
    height: 22px;
}

.social-icon:hover {
    background-color: transparent;
    border: 1px solid #45716f;
}

.social-icon.facebook:hover img {
    content: url('svg/Fb1.svg');
}

.social-icon.linkedin:hover img {
    content: url('svg/linkdin-dark.png');
}

.social-icon.instagram:hover img {
    content: url('svg/Instagram1.svg');
}

/* ===== RIGHT SECTION ===== */
.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== RESPONSIVE - DESKTOP ===== */
@media (max-width: 1024px) {
    .left-section {
        padding: 60px 50px 90px 50px;
    }

    .main-heading {
        font-size: 56px;
    }

    .logo img {
        height: 100px;
    }
}

/* ===== DESKTOP LAYOUT (991px+) ===== */
.desktop-layout {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mobile-layout {
    display: none;
}

/* ===== MOBILE LAYOUT (991px and below) ===== */
@media (max-width: 991px) {
    .desktop-layout {
        display: none;
    }

    .mobile-layout {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 30px 30px;
        position: relative;
        overflow: hidden;
        background-image: linear-gradient(0deg, #f1f5df 0%, #f1f5df 1%, #fdfff8 100%);

    }

    .mobile-layout .logo {
        margin-bottom: 10px;
    }

    .mobile-layout .logo img {
        height: 75px;
    }

    .mobile-layout .coming-soon {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .mobile-layout .main-heading {
        font-size: clamp(28px, 5vw, 56px);
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .mobile-layout .decorative-top {
        position: absolute;
        top: clamp(-40px, -5vw, -60px);
        right: clamp(-30px, -5vw, -40px);
        width: clamp(250px, 40vw, 380px);
        height: clamp(220px, 35vw, 350px);
        opacity: 0.8;
        z-index: 1;
    }

    .building-section {
        width: 100%;
    }

    .building-section .building-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .mobile-layout .contact-section {
        margin-top: 20px;
    }

    .mobile-layout .contact-text {
        font-size: 13px;
    }
}

/* ===== RESPONSIVE - MOBILE LANDSCAPE ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        min-height: 100vh;
        padding: 40px 30px;
        justify-content: flex-start;
        overflow: hidden;
    }

  
    .main-heading {
        font-size: 40px;
    }

    .logo img {
        height: 80px;
    }

    .decorative-top {
        width: 350px;
        height: 300px;
        top: -60px;
        right: -40px;
    }

    .decorative-bottom {
        width: 280px;
    }
}

/* ===== RESPONSIVE - MOBILE PORTRAIT ===== */
@media (max-width: 480px) {
    .left-section {
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 32px;
        max-width: 100%;
    }

    .logo img {
        height: 70px;
    }

    .coming-soon {
        font-size: 12px;
    }

    .contact-text {
        font-size: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon.facebook img {
        width: 20px;
        height: 20px;
    }

    .social-icon img {
        width: 16px;
        height: 16px;
    }

    .decorative-top {
        width: 280px;
        height: 250px;
        top: -40px;
        right: -30px;
    }

    .decorative-bottom {
        width: 240px;
    }
}
