@charset "UTF-8";
:root {
  --rust: #8B3A2A;
  --rust-light: #A84C38;
  --rust-dark: #6B2A1C;
  --cream: #F5EFE0;
  --cream-dark: #EDE4CE;
  --gold: #C8A45A;
  --text-dark: #3A1A10;
  --white: #FFFFFF;
  --primary: #A84C38;
}

@font-face {
  font-family: "brongham";
  src: url("../fonts/brongham.woff") format("woff"), url("../fonts/brongham.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fefcf0;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 60px 0;
}

/* ── HEADER ── */
header {
  background-color: #a6432e;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.72);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-group img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 9px;
  font-weight: 700;
  color: var(--rust-dark);
  text-align: center;
  line-height: 1.1;
}

.logo-circle-2 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

header h1 {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

/* ── MAIN LAYOUT ── */
.page {
  position: relative;
  min-height: calc(100vh - 66px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 150px;
  overflow: hidden;
}

/* Background sketch illustrations */
.bg-illustration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  pointer-events: none;
  opacity: 0.75;
}

.bg-illustration img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

/* ── DATE BADGE ── */
.date-badge {
  position: absolute;
  top: 28px;
  right: 36px;
  text-align: right;
}

.date-badge .tagline {
  font-family: "brongham";
  font-style: italic;
  font-size: 15px;
  color: var(--primary);
  letter-spacing: 1px;
}

.date-badge .tagline .script {
  font-family: "brongham";
  font-style: normal;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.date-badge .tagline .caps {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
}

.date-badge .dates {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-top: 4px;
}

.date-badge .dates sup {
  font-family: "brongham";
}

.date-badge .month {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--primary);
  text-shadow: 1px 2px 3px rgba(168, 76, 56, 0.5);
}

.date-badge .venue {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 2px;
  text-shadow: 1px 2px 3px rgba(168, 76, 56, 0.5);
}

/* ── EXPO LOGO RING ── */
.expo-ring {
  margin-bottom: 4px;
  animation: fadeDown 0.7s ease both;
}

.expo-ring img {
  max-width: 160px;
}

.ring-svg {
  width: 110px;
  height: 110px;
}

/* ── HEADINGS ── */
.subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 0px;
  animation: fadeDown 0.8s 0.1s ease both;
}

.main-title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 5px;
  animation: fadeDown 0.8s 0.2s ease both;
}

.desc {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  animation: fadeDown 0.8s 0.3s ease both;
}

/* ── CARDS ── */
.cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.card {
  background: #c4604b;
  border-radius: 60px;
  width: 300px;
  padding: 0 0 12px;
  position: relative;
  animation: riseUp 0.7s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(107, 42, 28, 0.38);
  background: #a6432e;
  transition: 0.3s ease;
}

.card:nth-child(1) {
  animation-delay: 0.35s;
}

.card:nth-child(2) {
  animation-delay: 0.5s;
}

.card:nth-child(3) {
  animation-delay: 0.65s;
}

/* .card-icon-wrap {
  border-radius: 28px 28px 0 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.icon-area {
  width: 120px;
  height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fefcf0;
  border-radius: 0 0 35px 35px;
}

.icon-area img {
  max-height: 50px;
}

.visitor-card .icon-area img {
  max-height: 80px;
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--rust);
}

.card-body {
  padding: 20px 24px 0;
  text-align: center;
  margin-top: 15px;
}

.card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  color: var(--cream);
  margin-bottom: 0px;
}

.card-title span {
  font-family: "brongham";
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 239, 224, 0.82);
  line-height: 1.6;
  min-height: 44px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  max-width: 100%;
  padding: 11px 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0px;
  transition: all 0.2s ease;
  margin-bottom: 6px;
  text-decoration: none;
  font-style: italic;
  border: 1px solid var(--primary);
}

.btn img {
  width: 16px;
}

.btn-register {
  background: #fefcf0;
  color: var(--primary);
}

.btn-register:hover {
  background: #a6432e;
  border-color: #fff;
  color: #fff;
}

.btn-register:hover img {
  filter: brightness(0) invert(1);
}

.btn-signin {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 239, 224, 0.55);
}

.btn-signin:hover {
  background: rgba(245, 239, 224, 0.12);
  border-color: var(--cream);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.center-area {
  text-align: center;
}

header {
  position: relative;
  z-index: 999;
}
header .menu-area #navbarNav {
  justify-content: end;
}
header .menu-area #navbarNav ul.navbar-nav {
  gap: 32px;
}
header .menu-area #navbarNav ul.navbar-nav li a {
  color: #fff;
}

.banner-section {
  min-height: 100vh;
  position: relative;
  background: url(../images/bg2.jpg) left center repeat-x;
  background-size: auto 100%;
}

.about-section {
  background-color: var(--primary);
  padding-bottom: 80px;
}
.about-section .logo-area {
  width: 220px;
  height: 220px;
  background-color: var(--primary);
  padding: 25px;
  border-radius: 50%;
  margin-top: -100px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.about-section .logo-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-section .content-area h2 {
  font-size: 55px;
  color: #fff;
  text-transform: uppercase;
}
.about-section .content-area h2 span {
  font-family: "brongham";
  font-size: 100px;
}
.about-section .content-area p {
  color: #fff;
}

.team-banner-section {
  padding: 60px 0;
  background: url(../images/bg1.png) center 75% no-repeat;
  background-size: contain;
  min-height: 500px;
  position: relative;
}
.team-banner-section .date-badge {
  position: relative;
  top: 0;
  right: 0;
}
.team-banner-section .date-badge .tagline .script {
  font-size: 45px;
}
.team-banner-section .date-badge .tagline .caps {
  font-size: 16px;
}
.team-banner-section .date-badge p {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}
.team-banner-section .date-badge.text-start {
  max-width: 360px;
}
.team-banner-section .last-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 40px;
  color: var(--primary);
  letter-spacing: 2px;
}

.team-section {
  padding: 80px 0;
  background: var(--primary);
}
.team-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.team-section .grid-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.team-section .item {
  background: #fff;
  text-align: center;
  border-radius: 26px;
  overflow: hidden;
}
.team-section .item h4 {
  font-size: 16px;
  margin: 12px 0 2px;
}
.team-section .item p {
  margin: 0;
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: 15px;
}

.gallery-section .item {
  border-radius: 6px;
  border: 1px solid #fff;
}

.contact-section-banner {
  padding: 60px 0 20px;
}
.contact-section-banner h1 {
  font-size: 55px;
  color: var(--primary);
  text-transform: uppercase;
}
.contact-section-banner h1 span {
  font-family: "brongham";
  font-size: 100px;
}

.map-section {
  position: relative;
}
.map-section .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-section .map-area {
  width: 100%;
  height: 100%;
  border: none;
}
.map-section iframe {
  height: 500px !important;
}
.map-section .contact-form-area {
  width: 400px;
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.38);
  position: absolute;
  left: 10%;
}
.map-section .contact-form-area form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin-left: auto;
}
.map-section .contact-form-area form .form-control {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 0px;
  height: 50px;
}
.map-section .contact-form-area form .btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.map-section .contact-form-area form .btn-submit:hover {
  background: #6e2b1d;
}

.contact-info-section {
  padding: 60px 0 20px;
}
.contact-info-section .contact-iten h5 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-info-section .contact-iten p {
  margin-bottom: 0;
  color: #333;
}
.contact-info-section .contact-iten a {
  color: var(--primary);
  text-decoration: none;
}
.contact-info-section .contact-iten a:hover {
  text-decoration: underline;
}
.contact-info-section .social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.contact-info-section .social li a {
  font-size: 18px;
  background-color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}
.contact-info-section .social li a i {
  color: #fff;
  display: flex;
}

footer {
  background-color: var(--primary);
  padding: 30px 0px;
  text-align: center;
  margin: 60px 0 0;
  background: url(../images/Footer-bg.png) center bottom no-repeat;
  background-size: auto 100%;
  border-radius: 30px 30px 0 0;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.72);
}
footer .social {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin: 0px;
  padding: 0;
  list-style: none;
}
footer .social li a {
  font-size: 18px;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}
footer .social li a i {
  color: var(--primary);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── RESPONSIVE ── */
@media (min-width: 1600px) {
  .bg-illustration {
    height: 400px;
  }
}
@media (min-width: 2000px) {
  .bg-illustration {
    height: 600px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 10px 15px;
  }
  header .container {
    max-width: 100%;
  }
  header .container > .row {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  header .container > .row .col-sm-6 {
    flex: 0 0 auto;
    width: auto;
    padding: 0;
  }
  header h1 {
    font-size: 14px;
    margin: 0;
  }
  header .menu-area .container-fluid {
    padding: 0;
  }
  header .menu-area .navbar-toggler {
    background: #fff;
    font-size: 15px;
    padding: 4px 8px;
  }
  header .menu-area .navbar-toggler:focus {
    box-shadow: none;
  }
  header .menu-area #navbarNav {
    position: absolute;
    z-index: 9999;
    width: calc(100vw - 30px);
    top: 60px;
    background: #6e2b1d;
    right: 0;
    border-radius: 10px;
  }
  header .menu-area ul.navbar-nav {
    justify-content: center;
    align-items: center;
    gap: 12px !important;
    padding: 15px;
  }
  header .menu-area ul.navbar-nav li {
    width: 100%;
  }
  header .menu-area ul.navbar-nav li a {
    display: block;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .page {
    padding: 30px 10px 80px;
  }
  .main-title {
    font-size: 22px;
    letter-spacing: 3px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
  }
  .date-badge {
    position: static;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .date-badge .dates {
    font-size: 28px;
  }
  .date-badge .month {
    font-size: 22px;
  }
  .center-area {
    text-align: center;
  }
  .bg-illustration {
    height: 100px;
    opacity: 0.95;
  }
  .about-section .logo-area {
    margin-left: auto;
    margin-right: auto;
  }
  .about-section .row > div {
    text-align: center;
  }
  .about-section .content-area h2 {
    font-size: 30px;
  }
  .about-section .content-area h2 span {
    font-size: 50px;
  }
  .about-section .content-area p {
    font-size: 14px;
  }
  footer .social {
    justify-content: center;
    margin-bottom: 30px;
  }
  .contact-info-section .contact-iten {
    text-align: center;
    margin-bottom: 30px;
  }
  .contact-info-section .contact-iten h5 {
    font-size: 18px;
    margin-bottom: 10px !important;
  }
  .contact-info-section .social {
    justify-content: center;
  }
  .team-banner-section {
    text-align: center;
  }
  .team-banner-section .date-badge.text-start {
    max-width: 80%;
    margin: 0 auto 20px;
    text-align: center !important;
  }
  .team-banner-section .logo-area img {
    max-width: 200px;
  }
  .team-banner-section .last-text {
    width: 100%;
    bottom: 0;
  }
  .team-section h2 {
    margin-bottom: 25px;
    font-size: 30px;
  }
  .team-section .grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}/*# sourceMappingURL=style.css.map */