
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  font-family: "Inter", sans-serif;
}

.container {
    max-width: 1200px;
    height: 100vh;
}
.hero {
    height: 100%;
}

.sect1 img {
    width: 100%;
    object-fit: cover;
    max-height: 100vh;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}
.sect1,
.sect2 {
    flex: 1 1 50%;   /* 50% each */
}
.sect2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.sect2 img {
    width: 100px;
}

.logo {
    width: 100px;
    margin-top: auto;   /* pushes logo to the bottom */
}

.content {
     margin: auto;
     text-align: center;
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 420px;
    color: #555;
    margin-bottom: 28px;
}

.whatsapp-btn {
    text-decoration: none;
    background-color: #2b9fe8;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .sect1,
    .sect2 {
        flex: 1 1 100%;
    }
/* 
    .sect1 {
        height: 45vh;
    } */

    .sect1 img {
    width: 100%;
    object-fit: cover;
    max-height: 50vh;
}



    .sect2 {
        height: 55vh;
         padding-bottom: 16px;
    }

        .content h1 {
        font-size: 1.8rem;   /* slightly smaller */
    }

    .content p {
        font-size: 0.85rem;
    }


    .logo {
        margin-bottom: 6px;
    } 
}