:root {
  --primary-color: #644222;
  --secondary-color: #000;
  --text-color: #8a8a8a;
  --light-bg-color: #f4f9fc;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #323232;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.6px;
  background: #000;
}

.container {
  max-width: 1280px;
  width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
}
h1,
.h1 {
  font-size: 42px;
  font-weight: 800;
}
h2,
.h2 {
  font-size: 36px;
  font-weight: 600;
}
h3,
.h3 {
  font-size: 24px;
  font-weight: 600;
}
h4,
.h4 {
  font-size: 21px;
  font-weight: 600;
}
h5,
.h5 {
  font-size: 18px;
}
h6,
.h6 {
  font-size: 16px;
}
p {
  margin-bottom: 10px;
  line-height: 28px;
  font-size: 15px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

input,
select,
textarea,
button {
  background-color: transparent;
  outline: none !important;
  box-shadow: none !important;
}

.global-btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(
    135deg,
    #5a430f 0%,
    #8a6a20 40%,
    #c9a84c 70%,
    #5a430f 100%
  );
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* Icon style */
.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Icon move on hover */
.global-btn a:hover .btn-icon {
  transform: translateX(6px);
}

/* Shine effect */
.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  animation: shineMove 3s infinite;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Hover effect */
.global-btn a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  /*  background: #ccc;*/
  z-index: 9999999999999;
}
.bar--progress {
  position: absolute;
  width: 0%;
  height: 3px;
  background: #c49d48;
  transition: 0.25s ease-in-out;
}

/*** Top Header -------*/

/*Sticky Header*/

header {
  position: relative;
  z-index: 99;
}
header.sticky .top-header {
  display: none;
  transition: 0.6s;
}

header.sticky {
  position: fixed;
  width: 100%;
  background: radial-gradient(
      ellipse 80% 60% at 50% 40%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a0804 0%, #1a1005 50%, #0a0804 100%);
  z-index: 9999999;
  top: 0;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

header.sticky .logo img {
  width: 100px;
  transition: 0.6s;
}

header.sticky .main-navbar ul li {
  display: inline-block;
  padding-left: 18px;
  transition: 0.6s;
}

.top-header {
  background: #c49d48;
  padding: 5px 0px;
  transition: 0.6s;
}

.top-bar-left a {
  font-size: 13px;
  color: #222;
  font-weight: 700;
}

.logo img {
    transition: 0.6s;
    width: 160px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navbar ul li {
  display: inline-block;
  padding-left: 30px;
}
.main-navbar ul li a {
  color: #fff2d3;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.main-navbar ul li a.nav-link.active {
  color: #c9a84c;
}
.main-navbar ul li a:after {
  display: block;
  content: "";
  border-bottom: solid 3px #be963d;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  margin-top: 15px;
  border-radius: 50px;
}

.main-navbar ul li a:hover:after {
  transform: scaleX(1);
}
.main-navbar ul li a:hover {
  color: #be963d;
}

/*Intro Sec*/

.main-intro-sec:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
      ellipse 80% 60% at 50% 40%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #0a0804 0%, #1a1005 50%, #0a0804 100%);
  top: 0;
  opacity: 0.9;
}

.intro-info {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 9;
}

.hero-season {
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 26px;
  color: #ede0cb;
  animation: fadeUp 1s ease 0.8s forwards;
  margin-bottom: 10px;
}
.hero-title {
  font-family: "Cinzel", serif;
  font-size: 140px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #e8c97a 0%,
    #c9a84c 40%,
    #8a6a20 70%,
    #c9a84c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.hero-title span {
  display: block;
}

.hero-year {
  color: #ede0cb;
  font-family: "Cinzel", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

section.about-event {
  background: linear-gradient(135deg, #0d0b05 0%, #1a1508 50%, #0d0b05 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0px;
}
section.about-event:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
}
.about-visual.visible {
  opacity: 1;
  transform: translateX(0);
}
.about-card {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.08),
    rgba(201, 168, 76, 0.02)
  );
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 50px 40px;
  position: relative;
}
.about-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 60px;
  height: 2px;
  background: #e8c97a;
}
.about-card::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: -1px;
  width: 2px;
  height: 60px;
  background: #e8c97a;
}
.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #e8c97a;
  margin-bottom: 20px;
}
.about-quote-attr {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e8c97a;
  opacity: 0.7;
}
.event-info {
  width: 80%;
}
.event-info h2 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: #f5ede0;
  font-size: 50px;
  margin-bottom: 10px;
  transition: all 0.8s ease 0.1s;
}

.event-info p {
  color: #f5ede0d9;
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}
.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #f5ede0d9;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #ede0cb;
  margin-bottom: 50px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ede0cb;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 1;
  color: #f5ede0d9;
}
.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #ede0cb;
}

/* VENUE */
.venue::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
}
.venue {
  background: #111008;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0px;
}

.venue-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 65%
  );
}
.venue-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.venue-name {
  font-family: "Cinzel", serif;
  font-size: 90px;
  font-weight: 600;
  line-height: 1.1;
  transition: all 1s ease;
  color: #fff;
  margin-top: 40px;
}

.venue-city {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 60px;
  color: #c9a84c;
  margin-bottom: 20px;
}
.section-tag {
  background: #ffd970;
  display: inline;
  padding: 6px 20px;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.meet-founders {
  background: #0a0804;
  padding: 100px;
  height: 100%;
  background-attachment: fixed;
}

.meet-founders h2 {
  color: #c9a84c;
  font-size: 60px;
  font-family: "Cinzel", serif;
  text-align: center;
  margin-bottom: 80px;
}

.founders-info {
  background: linear-gradient(145deg, #161008, #1f1810);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 50px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.8s ease;
}
.founders-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.founders-info h6 {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}
.founders-info h3 {
  font-family: "Cinzel", serif;
  font-size: 40px;
  color: #f5ede0;
  margin-bottom: 20px;
}

.founders-info p {
  font-size: 14px;
  line-height: 1.8;
  color: #fff6eb;
  font-weight: 300;
  margin-bottom: 20px;
}
.founders-img img {
  width: 80%;
  margin: 0 auto;
  display: table;
  border: 10px solid#f5ede0;
  padding: 10px;
}

/* =======================Footer End=========================== */


.contact-field {
  margin-bottom: 20px;
}

.contact-field input {
  width: 100%;
  border: none;
  padding-left: 15px;
  transition: 0.3s;
  border-radius: 0;
  border: 1px solid #cfcdcd;
  height: calc(2.5em + 0.75rem + 2px);
  color: #fff;
}

.contact-field textarea {
  height: 100px !important;
  resize: vertical;
  width: 100%;
  border: none;
  padding-left: 15px;
  transition: 0.3s;
  border-radius: 0;
  border: 1px solid #cfcdcd;
  height: calc(2.5em + 0.75rem + 2px);
    color: #fff;
}

::placeholder{
  color: #cfcdcd;
}
.submit-btn button.btn {
  width: 100%;
}
section.contact-us {
  padding: 80px 0px;
}
.contactus-form h2{
  color: #fff;
  text-align: center;
}

.contactus-form p{
  color: #fff;
  text-align: center;
}
.contact-field textarea {
  padding: 10px;
}

.submit-btn button.btn {
  width: 100%;
  border: none;
  line-height: initial;
  text-transform: uppercase;
  padding: 18px 30px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  box-shadow: none !important;
  background: #c9a84c;
  color: #000;
    font-family: "Cinzel", serif;
}

.submit-btn button.btn:hover{
  background: #fff2d3;
}
/*About Us Page*/

.about-info {
    text-align: center;
    color: #fff;
    padding: 100px 0px;
    position: relative;
    z-index: 8;
}
.about-info h2{
  color: #fff;
}
.about-info p{
  margin-bottom: 15px;
  text-align: center;
    color: #fff;
} 

.event-info h3 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: #f5ede0;
  font-size: 30px;
  margin-bottom: 10px;
  transition: all 0.8s ease 0.1s;
}

.about-visual img{
  width: 100%;
}
section.about.meet-founders {
    padding: 40px 0px;
}

.register-form{
  position: relative;
  z-index: 99;
  padding: 100px 0px;
}
.register-form iframe {
    border: 0;
    padding: 0px 15px;
    width: 100%;
}