@font-face {
  font-family: "Outfit-Bold";
  src: url("../fonts/Outfit/Outfit-Bold.ttf");
}
@font-face {
  font-family: "Outfit-SemiBold";
  src: url("../fonts/Outfit/Outfit-SemiBold.ttf");
}
@font-face {
  font-family: "Outfit-Medium";
  src: url("../fonts/Outfit/Outfit-Medium.ttf");
}
@font-face {
  font-family: "Outfit-Regular";
  src: url("../fonts/Outfit/Outfit-Regular.ttf");
}
@font-face {
  font-family: "TrajanPro-Bold";
  src: url("../fonts/trajan-pro/TrajanPro-Bold.otf");
}
@font-face {
  font-family: "TrajanPro-Regular";
  src: url("../fonts/trajan-pro/TrajanPro-Regular.ttf");
}

:root {
  --primary-red: #a00c1a;
  --bg-cream: #fff9eb;
  --text-dark: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Outfit-Regular";
  background-color: var(--bg-cream);
  color: var(--text-dark);
  height: 100%;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
}
.mobile {
  display: none;
}

.container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Left Section: Content */
.left-content {
  width: 50%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

.left-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background: url("../images/flower.png") no-repeat;
  opacity: 1;
  z-index: 0;
  transform: translate(-50%, -50%);
  background-position: center;
  pointer-events: none;
}

.logo-area {
  margin-bottom: 20px;
}

.logo-area img {
  width: 200px;
}

.exclusive-tag {
  letter-spacing: 1px;
  font-size: 1.8rem;
  margin-bottom: 0;
  margin-top: 10px;
}

h1 {
  font-family: "TrajanPro-Bold";
  color: var(--primary-red);
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 10px 0;
  text-transform: uppercase;
}

.sub-text {
  max-width: 440px;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1818;
  margin-top: 0;
  font-family: "Outfit-Medium";
}

.details-box {
  border: 1px solid var(--primary-red);
  padding: 15px 60px;
  margin-bottom: 10px;
  border-radius: 3px;
}

.details-box h2 {
  color: var(--primary-red);
  margin: 0;
  font-size: 1.4rem;
  font-family: "Outfit-Medium";
  font-weight: unset;
}
.details-box p {
  margin: 10px 0 0;
  font-size: 1.4rem;
}
.venue {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.venue strong {
  font-family: "Outfit-Bold";
}

.contact {
  color: var(--primary-red);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  font-family: "Outfit-Bold";
}
.contact span {
  display: inline-flex;
}
.contact img {
  margin-inline: 10px;
  max-width: 30px;
}

/* Right Section: Image & Form */
.right-content {
  width: 50%;
  position: relative;
  /* background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1000&q=80"); */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
  background-color: #fff;
}

/* Gradient Overlay to blend left and right */
.right-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-cream) 0%, transparent 20%);
  /* display: none; */
  z-index: 99;
  pointer-events: none;
}

.handshake {
  pointer-events: none;
}

.handshake img {
  max-width: 100%;
  width: 100%;
  z-index: 9;
  position: relative;
}

.form-container {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border: 1px solid var(--primary-red);
  width: 80%;
  max-width: 650px;
  border-bottom: 0;
  margin-bottom: -110px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

input {
  width: 100%;
  padding: 15px;
  border-radius: 3px;
  border: 1px solid #a00c1a;
  background: #fff9ea;
  box-sizing: border-box;
  outline: none;
}

input::placeholder {
  color: var(--text-dark);
}

.submit-btn {
  width: auto;
  font-family: "Outfit-Bold";
  background: var(--primary-red);
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  padding: 10px 40px;
  border-radius: 5px;
  margin: 15px auto 0;
  display: flex;
  font-size: 18px;
}

.submit-btn:hover {
  background: #7a080f;
}
