/* =========================================
   ROOT VARIABLES
========================================= */
:root{
  --tc-bg-cream:#F4EFEA;
  --tc-accent-clay:#B08968;
  --tc-accent-deep:#7F5539;
  --tc-text-dark:#3E3E3E;
  --tc-white:#ffffff;
}

/* =========================
   GLOBAL RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
}
/* =========================================================
   HAMBURGER MENU
========================================================= */
.hamburger{
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}

.hamburger span{
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Animate into X */
.hamburger.active span:nth-child(1){
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: rotate(-45deg) translate(6px,-6px);
}
/* =========================================
   NAVBAR SECTION
========================================= */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 12px 5px;
  background: var(--tc-accent-deep);
  z-index: 2000;
}

.nav-section{
  display: flex;
  justify-content: space-between;
  gap:40px;
  list-style-type: none;
}

.nav-section li a{
  color:var(--tc-white);
  text-decoration: none;
}

#nav-button{
  position: relative;
  overflow: hidden;
  background:var(--tc-accent-clay);
  color:var(--tc-white);
  padding: 16px 24px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Light Sweep Layer */
#nav-button::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: var(--accent-deep);
  transform: rotate(25deg);
  transition: 0.6s ease;
}

/* Hover Animation */
#nav-button:hover::before{
  left: 120%;
}

/* Slight lift effect */
#nav-button:hover{
  transform: translateY(-3px);
}

/* NAVBAR RESPONSIVE */
@media (max-width: 992px) {
  .navbar{
    flex-direction:column;
    gap:15px;
    padding:20px;
    text-align:center;
  }
  
  .nav-section{
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
  }
}

   /*========================================================================== */
@media (max-width: 768px) {
  /* Navbar Mobile */
.navbar{
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 20px;
}

.hamburger{
  display: flex;
}

.nav-section{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--tc-accent-deep);
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px 0;
  transform: translateY(-120%);
  opacity: 0;
  transition: 0.4s ease;
}

.nav-section.active{
  transform: translateY(0);
  opacity: 1;
}

#nav-button{
  display: none;
}
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 400px;
 background: linear-gradient(
  to right,
  rgba(127, 85, 57, 0.9),
  rgba(176, 137, 104, 0.6)
);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1758905728020-a888617aecd0') center/cover no-repeat;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
}

.hero-icons {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #e9d5ff;
}

/* =========================
   CONTACT CARDS
========================= */

.contact-cards {
  max-width: 1100px;
  margin: -60px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 28px;
  color: #6d28d9;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.card span {
  font-size: 14px;
  color: #777;
}

/* =========================
   MAIN CONTACT SECTION
========================= */

.main-contact {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

/* Left Side */

.contact-info h2 {
  margin-bottom: 15px;
  font-size: 26px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #666;
}

.why-box {
  background: #f3e8ff;
  border-left: 5px solid #6d28d9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.why-box h3 {
  margin-bottom: 10px;
}

.why-box ul {
  list-style: none;
  margin-top: 10px;
}

.why-box li {
  margin-bottom: 8px;
  font-size: 14px;
}

.office-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.office-box h3 {
  margin-bottom: 15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6d28d9;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #6d28d9;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #4c1d95;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .main-contact {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    margin-top: -40px;
  }
}

/* =========================================
   FOOTER SECTION
========================================= */
.footer {
  background: var(--tc-accent-deep);
  color: white;
  padding: 80px 10% 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--tc-accent-clay);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
  color: var(--tc-accent-clay);
}

.social-icons {
  margin-top: 15px;
}

.social-icons i {
  margin-right: 12px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  color:var(--tc-accent-clay);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

/* BODY RESPONSIVE */
@media (max-width: 768px) {
  body{
    padding-top:120px;
  }
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer{
    padding:60px 6% 20px;
  }
  
  .footer-col h3{
    font-size:20px;
  }
  
  .footer-col h4{
    font-size:16px;
  }
}










/* ===============================
   EVENT CONTACT FORM
================================ */

.event-contact-section{
  padding:120px 10%;
  background:#f8f4f0;
}

.contact-wrapper{
  display:flex;
  gap:60px;
  align-items:center;
  flex-wrap:wrap;
}

.contact-left{
  flex:1;
}

.contact-left h2{
  font-size:2.5rem;
  margin-bottom:20px;
  color:#7F5539;
}

.contact-left p{
  font-size:16px;
  line-height:1.8;
}

.contact-right{
  flex:1;
  background:#ffffff;
  padding:40px;
  border-radius:15px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.contact-right input,
.contact-right select,
.contact-right textarea{
  width:100%;
  padding:12px 15px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}

.submit-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:#7F5539;
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.submit-btn:hover{
  background:#B08968;
  transform:translateY(-3px);
}

/* Responsive */
@media(max-width:768px){
  .contact-wrapper{
    flex-direction:column;
  }
}
/* =========================
   PREMIUM SELECT & DATE STYLE
========================= */

/* Select Styling */
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background-color: #fff;
  color: #333;
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Custom Arrow */
.contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%237F5539' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* Focus Effect */
.contact-form select:focus {
  outline: none;
  border-color: var(--tc-accent-clay);
  box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.2);
}


/* Date Input Styling */
.contact-form input[type="date"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
}

/* Focus Effect */
.contact-form input[type="date"]:focus {
  outline: none;
  border-color: var(--tc-accent-clay);
  box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.2);
}

/* Calendar Icon Color (Chrome) */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(38%) sepia(16%) saturate(1200%) hue-rotate(340deg);
  cursor: pointer;
}
/* logo */
.logo img{
height:55px;
width:auto;
object-fit:contain;
}