*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
   height: 100%;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


li{
    list-style: none;
}

a{
    color: white;
    text-decoration: none;
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    background: #4d2b0c;
    color: white;

}

.nav-menu{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.nav-branding{
    font-size: 1.5rem;
    font-weight: bold;
   font-family: "Montserrat", sans-serif;
}

.nav-link{
    padding: 8px 10px;
    font-size: 1.1rem;
    transition: 0.7s ease;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.nav-link:hover{
    color: #ff6600;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;

}

@media (max-width: 768px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0px;
        flex-direction: column;
        background-color: #4d2b0c;
        opacity: 0.99;
        width: 50%;
        height: auto;
        text-align: center;
        transition: 0.3s;
        z-index: 6;
        border-radius: 0 0 50px 0;
    }

    .nav-item{
        margin: 16px 0;
    }

    .nav-link{
        margin: 10px;
        padding-bottom: 10px;
    }

    .nav-branding{
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
}


.hero{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

}

.overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 40px 20px;
 background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.overlay h1{
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
}

.overlay p{
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #4d2b0c;
}

.hero-btn{
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero-btn:hover{
    background-color: #a65c00;
}

.nav-bar{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background-color: #ff6600;
    color: white;
}

.logo-brand{
    display: flex;
   align-items: center;
   gap: 10px;
}

.logo{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.brand-name{
font-size: 1.2rem;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-style: italic;
}

.nav-links{
    display: flex;
    gap: 40px;
    list-style-type: none;
   
}

.nav-links a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover{
    color: #ff6600;
}

@media(max-width:768px){
    .nav-bar{
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    .nav-links{
        margin-top: 15px;
    }
    .overlay{
        width: 80%;
    }
    .overlay h1{
        font-size: 2rem;
    }
    .overlay p{
font-size: 1rem;
    }
    .hero-btn{
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media(max-width:400px){
     .nav-bar{
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    .nav-links{
        margin-top: 15px;
        gap: 25px;
    }
    .overlay h1{
        font-size: 1.2rem;
    }
    .overlay p{
        font-size: 0.5rem;
    }
    .hero-btn{
        font-size: 1rem;
    }
}

.about-section{
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2{
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    
}

.about-section p{
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}


.card-section {
  background: #f9f9f9;
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0;
  font-size: 1.1rem;
}

.card-btn {
  background: #4d2b0c;
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}


/* CONTACT US */
.contact-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #4d2b0c;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  flex: 1 1 auto;
  display: block;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}


.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #4d2b0c;
}

.contact-item a {
  text-decoration: none;
  color: #4d2b0c;
}

.contact-item p {
  font-size: 1rem;
  color: #333;
}

/* Responsive */
/* Small screen adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: flex-start; /* prevent full height stretch */
    gap: 15px;
  }

  .contact-item {
    width: 100%;
    padding: 15px 12px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
  }

  .contact-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .contact-item p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
  }

  .contact-section {
    padding: 30px 15px;
  }

  .contact-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}


/* FOOTER SECTION */

.footer {
  background-color: #4d2b0c;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  margin-bottom: 10px;
  color: #fff;
}

.tagline {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.footer-links a:hover {
  background-color: #fff;
  color: #4d2b0c;
}

.footer-brand-italic {
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
}

.copyright {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 15px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer {
    padding: 40px 15px;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .copyright {
    font-size: 0.8rem;
  }
}
