/* ============================================================
   GLOBAL RESET
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Kalam', Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f4c542 0%, #e67e22 50%, #5a381e 100%);
  color: #fff;
}

/* ============================================================
   HEADER — FIXED FOR LOGO FIT
   ============================================================ */
header {
  width: 100%;
  padding: 20px;
  background: #5a381e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* LOGO IMAGE */
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* LOGO LINK */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  display: flex;
  gap: 20px;
  background: #e67e22;
  padding: 10px 20px;
  border-radius: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

nav a:hover {
  background: #f4c542;
  color: #5a381e;
}

/* ============================================================
   HERO SECTION — BACKGROUND IMAGE SUPPORT
   ============================================================ */
.hero {
  width: 100%;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url('/img/Tanzi-logo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* REMOVE ANY OVERLAY */
.hero-overlay {
  background: none !important;
}

/* HERO CONTENT */
.hero-content {
  text-align: center;
  color: #fff;
}

/* TITLE — BLACK OUTLINE + GOLD FILL + ORANGE GLOW */
.hero-title {
  font-size: 46px;
  font-weight: 700;
  color: #f4c542; /* gold */
  margin-bottom: 10px;

  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0 0 12px #e67e22; /* orange glow */
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px #000;
}

/* BUTTON */
.hero-btn {
  background: #e67e22;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background .2s;
}

.hero-btn:hover {
  background: #f4c542;
  color: #5a381e;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
main {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

h1, h2, h3 {
  margin-bottom: 15px;
  color: #f4c542;
}

p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 250px;
  background: #fff3d0;
  color: #5a381e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-align: center;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #e67e22;
}

/* ============================================================
   POPULAR GRID
   ============================================================ */
.popular-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.popular-card {
  flex: 1;
  min-width: 250px;
  background: #fff3d0;
  color: #5a381e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-align: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  text-align: center;
  margin: 40px 0;
}

.cta .btn {
  background: #e67e22;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background .2s;
}

.cta .btn:hover {
  background: #f4c542;
  color: #5a381e;
}

/* ============================================================
   BUTTONS — BUBBLE STYLE
   ============================================================ */
button {
  background: #e67e22;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}

button:hover {
  background: #f4c542;
  color: #5a381e;
}

/* ============================================================
   INPUTS — BUBBLE STYLE
   ============================================================ */
input, select {
  width: 100%;
  padding: 12px 18px;
  margin-bottom: 15px;
  border-radius: 30px;
  border: 2px solid #e67e22;
  font-size: 16px;
  outline: none;
  background: #fff3d0;
  color: #5a381e;
}

input:focus, select:focus {
  border-color: #f4c542;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  width: 100%;
  padding: 20px;
  background: #5a381e;
  color: #fff;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

/* ============================================================
   MOBILE FIXES
   ============================================================ */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  .logo-img {
    height: 65px;
  }

  nav {
    width: 100%;
    justify-content: center;
  }

  .hero {
    height: 350px;
    background-attachment: scroll;
    background-size: cover;
  }

  .hero-title {
    font-size: 32px;
  }
}
