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

:root {
    --primary-color: #fc5d66;
    --secondary-color: #ffc05a;
    --light-color: #f9fafb;
    --dark-color: #272d35;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
   display: inline-block; 
   padding: 1.6rem 2.6rem;
   border: 1px solid var(--secondary-color);
   border-radius: 32px;
   background: ;
}

/* Navbar */
.navbar {
    background-color: white; /* temp */
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
}

.navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar img {
    max-width: 400px;
}

.navbar .main-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
}

.navbar a {
    color: #fff;
}

.navbar a:hover {
    color: var(--secondary-color);
}

.navbar i {
    font-size: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.navbar .mobile-menu-toggle {
    color: #fff;
    cursor: pointer;
}

.navbar .mobile-menu-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0.95;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.navbar .mobile-menu-items.active {
    transform: translateX(0);
}

.navbar .mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.2rem;

}

/* Hero */
.hero {
    background: #000 url(../images/house.jpg) center center/cover no-repeat;
    padding: 11.5rem 2rem 8rem;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.hero .hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    padding-bottom: 8rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(34, 34, 34, 0.5);
    padding: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
    background: rgba(34, 34, 34, 0.5);
    padding: 30px;

}

.hero img {
    max-width: 50%;
    border-radius: 280px;
    margin-right: -100px;
    opacity: 80%;
}

/* Contact Form Styles */
.cta-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.cta-form input,
.cta-form textarea {
  padding: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: #007bff;
}

.cta-form textarea {
  min-height: 100px;
  resize: vertical;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

.form-status {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.form-status.success {
    color: #ffffff;
    background-color:rgba(0, 0, 0, 0.5);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 20px;
    border-radius: 5px;
}

.form-status.error {
  color: #dc3545;
}




/* Media Queries */
@media(max-width: 1200px) {
   .hero .hero-flex {
    display: block;    
   }

   .hero img {
    display: block;    
    margin: 0 auto;
   }
}

@media(max-width: 992px) {

}

@media(max-width: 768px) {
    .main-menu-items {
        display: none;
    }

   .cta-form {
         max-width: 100%;
         padding: 0 1rem;
    }

    .navbar .mobile-menu {
        display: block;
    }

    .navbar .mobile-menu-toggle {
        display: block;
        padding: 10px;
    }
}

@media(max-width: 576px) {

}

