@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

.content-wrapper {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    margin: 0;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    width: 100%;
}

/* Left Side - Image and Overlay Content */
.hero-left {
    display: flex;
    flex-direction: column;
    padding: 5vw;
    background: linear-gradient(#fffffff6, #3cbef141), url("canyon.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Header */
.header{
    width: 100%;
    margin-bottom: 10vw;
    height: auto;
}
.logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

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

.hero-content-overlay{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}



.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    width: 100%;
    text-align: left;
    color: #551215;
}

.main-title span {
   font-size: 4rem;
   font-weight: 400;
}

.title-underline {
    width: 150px;
    height: 3px;
    background: #551215;
    margin: 2rem 0;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
}

.description strong {
    font-weight: 600;
    color: #0f0f0f;
}

/* Right Side - Coming Soon Content */
.hero-right {
    background: #551215;
    padding: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro{
    border-bottom: 1px solid rgba(244, 228, 188, 0.3);
}

.coming-soon-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #F4E4BC;
}

.coming-soon-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.coming-soon-subtitle br {
    margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(244, 228, 188, 0.3);
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #F4E4BC;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Contact Section */
.contact-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #F4E4BC;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.contact-location {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location {
    font-size: 1rem;
    color: #F4E4BC;
    font-weight: 500;
}

.email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-phone{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.call-icon {
   background-color: white;
   display: grid;
   place-items: center;
   width: 35px;
   height: 35px;
    border-radius: 50%;
    padding: 1%;
}

.whatsapp-icon {
   display: grid;
   place-items: center;
   width: 35px;
   height: 35px;
    border-radius: 50%;
    color: green;
}

.phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        /* grid-template-rows: 60vh 40vh; */
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        padding: 3rem 2rem 2rem;
    }
    
    .hero-content-overlay {
        top: 20%;
        left: 2rem;
        right: 2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }

    .main-title span {
    font-size: 2rem;
    font-weight: 400;
    }

    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-rows: 70vh auto;
    }
    
    .hero-right {
        padding: 2rem 1.5rem;
    }

    .logo-text {
        gap: 0.125rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
    
    .hero-content-overlay {
        top: 15%;
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }

    .main-title span {
    font-size: 2rem;
    font-weight: 400;
    }
    
    .description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    
    .service-item h4 {
        font-size: 0.95rem;
    }
    
    .service-item p {
        font-size: 0.85rem;
    }
    
    .contact-section h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .location {
        font-size: 0.95rem;
    }
    
    .email {
        font-size: 0.85rem;
    }
    
    .phone {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-right {
        padding: 1.5rem 1rem;
    }
    
    .hero-content-overlay {
        left: 1rem;
        right: 1rem;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        gap: 1.25rem;
    }
    
    .contact-section h3 {
        font-size: 1.75rem;
    }
}
