/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

form.post-password-form {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #0e0e0e;
  color: #f8f6f2;
  line-height: 1.6;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background-color: #0e0e0e;
}

body::-webkit-scrollbar-thumb {
  background-color: #fb3637;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

@font-face {
  font-family: visby-regular;
  src: url("../fonts/VisbyCF-Regular.otf") format("opentype");
}

@font-face {
  font-family: visby-medium;
  src: url("../fonts/VisbyCF-Medium.otf") format("opentype");
}

@font-face {
  font-family: visby-bold;
  src: url("../fonts/VisbyCF-Bold.otf") format("opentype");
}

@font-face {
  font-family: visby-italic;
  src: url("../fonts/VisbyCF-BoldOblique.otf") format("opentype");
}

@font-face {
  font-family: albra-regular;
  src: url("../fonts/Albra-Regular.otf") format("opentype");
}

@font-face {
  font-family: albra-medium;
  src: url("../fonts/Albra-Medium.otf") format("opentype");
}

@font-face {
  font-family: albra-bold;
  src: url("../fonts/Albra-Bold.otf") format("opentype");
}

@font-face {
  font-family: albra-italic;
  src: url("../fonts/Albra-Regular-Italic.ttf") format("opentype");
}

@font-face {
  font-family: albra-semi-italic;
  src: url("../fonts/Albra-Semi-Italic-1.ttf") format("opentype");
}

@font-face {
  font-family: albra-semi;
  src: url("../fonts/Albra-Semi.otf") format("opentype");
}

@font-face {
  font-family: visby-demibold;
  src: url("../fonts/VisbyCF-DemiBold.otf") format("opentype");
}

@font-face {
  font-family: albra-light-italic;
  src: url("../fonts/Albra-Light-Italic.ttf") format("opentype");
}

@font-face {
  font-family: the-season-bold;
  src: url("../fonts/The-Season-Bold.otf") format("opentype");
}

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Custom font fallbacks for The Seasons and Visby CF */
.hero-title,
.about-title,
.newsletter-title {
  font-family: "the-season-bold";
  font-weight: 700;
}

.nav-link,
.card-title,
.cta-button,
.footer-nav,
.email-input {
  font-family: "visby-regular";
  font-weight: 700;
}

.mobile-logo-link {
  display: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.95) 37%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 134px;
  background: linear-gradient(
    180deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.95) 37%,
    rgba(0, 0, 0, 0) 100%
  );
  /* backdrop-filter: blur(10px); */
}

.header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.header .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0px;
  transition: padding 0.3s ease;
  min-height: 160px;
}

.header.scrolled .header-content {
  padding-top: 10px;
  min-height: 100px;
}

.nav {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.logo {
  width: 100px;
  height: 100px;
  margin: 0 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  object-fit: contain;
  flex-shrink: 0;
}

.header.scrolled .logo {
  width: 80px;
  height: 80px;
  margin: 0 30px;
}

.logo:hover {
  transform: scale(1.05);
}

.nav a {
  color: #f8f6f2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
  font-family: "visby-regular";
}

.nav a:hover {
  color: #fb3637;
}

.header-left-link.is-active {
  color: #fb3637;
}

.header-right-link.is-active {
  color: #fb3637;
}

.footer-link.is-active {
  color: #fb3637;
}

.footer-nav .separator:last-child {
  display: none;
} /* may not work reliably */

.footer-nav > a:last-of-type + .separator {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #f8f6f2;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 678px;
  max-height: 900px;
  background-image: url("../images/hero-background-8d8a3e.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 983px;
  padding: 0 40px;
}

.hero-title {
  font-size: 84px;
  line-height: 1.14;
  color: #fb3637;
  margin-bottom: 40px;
  font-weight: 700;
}

.hero-description {
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  max-width: 721px;
  margin: 0 auto;
}

/* ============================================
   MEMBERSHIPS PAGE - UNIFIED SECTION
   ============================================ */
.mobile-br-only {
  display: none;
}

.memberships-page {
  position: relative;
  width: 100%;
  min-height: 1085px;
  padding-top: 0;
  padding-bottom: 100px;
}

.memberships-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 811px;
  background-image: url("../images/memberships-hero-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.memberships-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 811px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.memberships-page-gradient {
  position: absolute;
  top: 533px;
  left: 0;
  width: 100%;
  height: 278px;
  background: linear-gradient(
    180deg,
    rgba(1, 1, 1, 0) 0%,
    rgba(1, 1, 1, 1) 100%
  );
  z-index: 2;
}

.memberships-page::after {
  content: "";
  position: absolute;
  top: 807px;
  left: 0;
  width: 100%;
  height: calc(100% - 807px);
  background-color: #010101;
  z-index: 0;
}

.memberships-page .container {
  position: relative;
  z-index: 3;
}

.memberships-page-content {
  text-align: center;
  padding-top: 255px;
}

.memberships-crown {
  margin-bottom: 5px;
}

.memberships-crown img {
  width: 44px;
  height: 25px;
}

.memberships-page-title {
  font-family: "the-season-bold";
  font-size: 84px;
  line-height: 1.14;
  color: #fb3637;
  font-weight: 700;
  margin-bottom: 40px;
}

.memberships-page-description {
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  max-width: 573px;
  margin: 0 auto 80px;
}

.memberships-page .membership-cards {
  margin-top: 0;
}

/* ============================================
   ABOUT PAGE - STANDALONE
   ============================================ */
.about-page {
  position: relative;
  width: 100%;
  min-height: 1044px;
  padding-top: 0;
  padding-bottom: 0;
}

.about-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.about-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.about-page .container {
  position: relative;
  z-index: 2;
}

.about-page-content {
  text-align: center;
  padding-top: 280px;
  padding-bottom: 100px;
}

.about-page-title {
  font-family: "the-season-bold";
  font-size: 84px;
  line-height: 1.14;
  color: #fb3637;
  font-weight: 700;
  margin-bottom: 40px;
}

.about-page-description {
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  max-width: 664px;
  margin: 0 auto;
}

.about-page-description p {
  margin-bottom: 24px;
}

.about-page-description p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE - STANDALONE
   ============================================ */
h2.memberships-title.contact-form-title {
  text-align: left;
}

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 894px;
  padding-top: 0;
  padding-bottom: 0;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/contact-hero-bg.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.contact-hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(14, 14, 14, 1) 100%
  );
  z-index: 2;
}

.contact-hero .container {
  position: relative;
  z-index: 3;
}

.contact-hero-content {
  text-align: center;
  padding-top: 280px;
  padding-bottom: 100px;
}

.contact-hero-title {
  font-family: "the-season-bold";
  font-size: 84px;
  line-height: 1.14;
  color: #fb3637;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-hero-description {
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  max-width: 674px;
  margin: 0 auto 40px;
}

/* Contact Details in Hero */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-detail-item svg {
  width: 28px;
  height: 28px;
}

.contact-detail-text {
  font-family: "visby-regular";
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #f8f6f2;
  text-align: center;
}

.contact-detail-text a {
  color: #f8f6f2;
  text-decoration: none;
}

.contact-detail-text a:hover {
  color: #fb3637;
}

/* Contact Form Section */
iframe {
  border-radius: 4px;
}

/* contact form 7 styles start */

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  margin-top: 12px;
  background-color: #312c2c;
  border: none;
  border-radius: 36px;
  padding: 12px 20px;
  font-family: "Inter";
  font-size: 14px;
  color: #ffffff;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/icon-park-solid-down-one.png);
  background-repeat: no-repeat;
  background-position-x: 94%;
  background-position-y: 8px;
}

.uacf7-col-6 label {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  color: #9c9c9c;
  padding-bottom: 20px;
}

.uacf7-col-12 label {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 500;
  color: #9c9c9c;
  padding-bottom: 20px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  margin-top: 12px;
  background-color: #312c2c;
  border: none;
  border-radius: 36px;
  padding: 12px 20px;
  font-family: "Inter";
  font-size: 14px;
  color: #ffffff;
  outline: none;
}

input.wpcf7-form-control.wpcf7-url.wpcf7-text.wpcf7-validates-as-url {
  margin-top: 12px;
  background-color: #312c2c;
  border: none;
  border-radius: 36px;
  padding: 12px 20px;
  font-family: "Inter";
  font-size: 14px;
  color: #ffffff;
  outline: none;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
  background-color: #312c2c;
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-family: "Inter";
  font-size: 14px;
  color: #ffffff;
  outline: none;
  margin-top: 12px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  align-self: flex-end;
  background-color: #dd3300;
  color: #f8f6f2;
  font-family: "visby-bold";
  font-size: 16px;
  padding: 8px 40px;
  border-radius: 65px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: #ae0001;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8c8c8c;
  font-family: "visby-demibold";
  font-size: 12px;
  list-style: 19.2px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required::-moz-placeholder {
  /* Firefox 19+ */
  color: #8c8c8c;
  font-family: "visby-demibold";
  font-size: 12px;
  list-style: 19.2px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:-ms-input-placeholder {
  /* IE 10+ */
  color: #8c8c8c;
  font-family: "visby-demibold";
  font-size: 12px;
  list-style: 19.2px;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:-moz-placeholder {
  /* Firefox 18- */
  color: #8c8c8c;
  font-family: "visby-demibold";
  font-size: 12px;
  list-style: 19.2px;
}
/* contact form 7 styles end */

.contact-form-section {
  background-color: #0e0e0e;
  padding: 40px 0 80px;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 506px 467px;
  gap: 80px;
  justify-content: center;
  align-items: start;
}

.contact-form-container {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map-container {
  width: 100%;
}

.contact-map {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Parking Section */
.parking-section {
  background-color: #0e0e0e;
  padding: 0 0 80px;
  text-align: center;
}

.parking-title {
  font-family: "the-season-bold";
  font-size: 84px;
  line-height: 1.14;
  color: #fb3637;
  margin-bottom: 40px;
}

.parking-description {
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  max-width: 674px;
  margin: 0 auto 60px;
}

.parking-map-wrapper {
  position: relative;
  max-width: 1070px;
  margin: 0 auto;
}

#parking-wrap-desktop-only {
  display: block;
}

#parking-wrap-mobile-only {
  display: none;
}

.parking-map {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.parking-marker {
  position: absolute;
  background-color: rgba(251, 54, 55, 0.2);
  border: 1px solid #fb3637;
  padding: 8px 12px;
  border-radius: 4px;
}

.parking-marker span {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  display: block;
}

.parking-lot-1 {
  top: 23%;
  left: 26%;
}

.parking-lot-2 {
  top: 58%;
  right: 28%;
}

.we-are-here-marker {
  position: absolute;
  top: 55%;
  left: 42%;
  transform: translate(-50%, -50%);
}

.we-are-here-marker .marker-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   ABOUT SECTION (Now part of memberships)
   ============================================ */
.about-title {
  font-size: 48px;
  line-height: 1.285;
  color: #fb3637;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.about-description {
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  max-width: 719px;
  margin: 0 auto 100px;
  position: relative;
  z-index: 2;
}

.section-divider {
  text-align: center;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

.section-divider img {
  width: 80px;
  height: 40px;
}

.memberships-title {
  font-size: 48px;
  line-height: 1.285;
  color: #fb3637;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  font-family: "the-season-bold";
}

/* ============================================
   MEMBERSHIPS SECTION
   ============================================ */
.memberships {
  position: relative;
  padding: 0 0 150px;
  background-color: #000;
  min-height: 1620px;
}

.memberships-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/cigar-image.png");
  background-size: contain;
  background-position: center;
  z-index: 0;
  background-repeat: no-repeat;
}

.membership-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 455px);
  gap: 20px;
  max-width: 1185px;
  margin: 0 auto;
  justify-content: center;
}

.membership-card {
  background: linear-gradient(
    46deg,
    rgba(19, 19, 19, 1) 2%,
    rgba(49, 44, 44, 1) 100%
  );
  border-radius: 24px;
  padding: 40px 30px;
  width: 455px;
  height: 472px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.memberships-page-card {
  width: 455px;
  height: 618px;
}

.membership-card.ember {
  background: linear-gradient(
    46deg,
    rgba(19, 19, 19, 1) 2%,
    rgba(49, 44, 44, 1) 100%
  );
}

.membership-card.flame {
  background: linear-gradient(
    46deg,
    rgba(19, 19, 19, 1) 2%,
    rgba(49, 44, 44, 1) 100%
  );
}

.membership-card.inferno {
  background: linear-gradient(
    45deg,
    rgba(24, 24, 24, 1) 0%,
    rgba(8, 8, 8, 1) 100%
  );
  border: 1px solid #fb3637;
}

.card-title {
  font-family: "visby-bold";
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.ember-title {
  background: linear-gradient(
    90deg,
    rgba(156, 156, 156, 1) 0%,
    rgba(222, 218, 218, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flame-title {
  background: linear-gradient(
    90deg,
    rgba(102, 59, 10, 1) 0%,
    rgba(255, 168, 26, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inferno-title {
  background: linear-gradient(
    90deg,
    rgba(251, 208, 54, 1) 0%,
    rgba(227, 28, 29, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-subtitle {
  font-family: "visby-regular";
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: #fb3637;
  text-align: center;
  margin-bottom: 30px;
  min-height: 40px;
}

.flame .card-subtitle,
.inferno .card-subtitle {
  color: #fb3637;
}

.card-pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  align-items: center;
  width: 100%;
}

.pricing-option {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}

.price-amount {
  font-family: "Albra", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 0.533;
  color: #fb3637;
  text-align: right;
}

.pricing-option.secondary .price-amount {
  color: #8d8d8d;
}

.price-period {
  font-family: "Visby CF", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #fb3637;
}

.pricing-option.secondary .price-period {
  color: #8d8d8d;
}

.card-benefits {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  padding: 0 10px;
}

.benefits-title {
  font-family: "visby-bold";
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

ul.benefits-list li {
  font-family: "visby-regular";
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  list-style: disc;
}

ul.benefits-list {
  margin-left: 24px;
}

.benefits-more {
  font-family: "Visby CF", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 26px;
}

.flame .benefits-title,
.flame .benefits-text,
.flame .benefits-more,
.inferno .benefits-title,
.inferno .benefits-text,
.inferno .benefits-more {
  color: #f8f6f2;
}

.membership-btn-link {
  margin-top: auto;
  text-decoration: none;
}

.cta-button {
  background-color: #dd3300;
  color: #f8f6f2;
  border: none;
  border-radius: 65px;
  padding: 8px 40px;
  font-family: "visby-bold";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
  width: 200px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.cta-button:hover {
  background-color: #ae0001;
}

.membership-form-wrapper {
  max-width: 700px;
  margin: auto;
  margin-top: 80px;
  text-align: left;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  position: relative;
  min-height: 245px;
  background-color: #181818;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.newsletter-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url("../images/newsletter-background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.newsletter .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1440px;
  width: 100%;
}

.newsletter-title {
  font-family: "the-season-bold";
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5em;
  color: #fb3637;
  margin-bottom: 40px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 428px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.email-input {
  width: 378px;
  height: 40px;
  background-color: #d9d9d9;
  border: none;
  border-radius: 36px;
  padding: 14px 20px;
  font-family: "Visby CF", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  color: #000000;
  outline: none;
}

.email-input::placeholder {
  color: #8c8c8c;
  font-family: "Visby CF", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
}

.email-input:focus {
  outline: 2px solid #fb3637;
}

.submit-button {
  width: 40px;
  height: 40px;
  background-color: #dd3300;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  right: -30px;
  top: 0;
}

.submit-button:hover {
  background-color: #d9d9d9;
}

.submit-button:hover svg path {
  stroke: #fb3637;
}

.submit-button svg {
  width: 19px;
  height: 17.54px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #0e0e0e;
  padding: 40px 0 49px;
  min-height: 551px;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-logo {
  width: 100px;
  height: 100px;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  flex: 1;
}

.contact-item svg {
  width: 28px;
  height: 28px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-text a {
  font-family: "visby-regular";
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  color: #f8f6f2;
  text-align: center;
  margin: 0;
  text-decoration: none;
}
.contact-text a:hover {
  color: #fb3637;
}

.contact-text p {
  font-family: "visby-regular";
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  color: #f8f6f2;
  text-align: center;
  margin: 0;
}

.footer-divider {
  width: 100%;
  max-width: 1196px;
  height: 0.5px;
  background-color: #5d5757;
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "visby-regular";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.footer-nav a {
  color: #f8f6f2;
  font-family: "visby-regular";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.25em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fb3637;
}

.footer-nav .separator {
  color: #f8f6f2;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 114px;
  margin-bottom: 67px;
}

.footer-social a {
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social svg {
  width: auto;
  height: 27px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1196px;
}

.footer-credit {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
  color: #f8f6f2;
  margin: 0;
}

.footer-credit a {
  color: #f8f6f2;
}

.footer-credit a:hover {
  color: #fb3637;
}

.footer-legal {
  display: flex;
  gap: 42px;
  align-items: center;
}

.footer-legal a {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
  color: #f8f6f2;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: right;
}

.footer-legal a:hover {
  color: #fb3637;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }

  /* Tablet: Adjust nav spacing */
  .nav {
    gap: 40px;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin: 0 30px;
  }

  .mobile-logo-link {
    display: block;
    width: 42px;
    height: 40px;
    background-color: #ffffff00;
    margin-left: 25px;
    margin-top: -60px;
    position: relative;
    z-index: 1003;
  }

  .header.scrolled .logo {
    width: 60px;
    height: 60px;
    margin: 0 20px;
  }

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

  /* Memberships Page - Tablet */
  .memberships-page-bg,
  .memberships-page-overlay {
    height: 600px;
  }

  .memberships-page-gradient {
    top: 322px;
  }

  .memberships-page::after {
    top: 600px;
    height: calc(100% - 600px);
  }

  .memberships-page-content {
    padding-top: 200px;
  }

  .memberships-page-title {
    font-size: 64px;
  }

  .about-title {
    font-size: 40px;
  }

  /* About Page - Tablet */
  .about-page {
    min-height: auto;
  }

  .about-page-content {
    padding-top: 220px;
    padding-bottom: 80px;
  }

  .about-page-title {
    font-size: 64px;
  }

  /* Contact Page - Tablet */
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-content {
    padding-top: 220px;
    padding-bottom: 80px;
  }

  .contact-hero-title {
    font-size: 64px;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-map-container {
    order: -1;
  }

  .parking-title {
    font-size: 40px;
  }

  .membership-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 375px;
  }

  .membership-card {
    max-width: 100%;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-social {
    gap: 60px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media (max-width: 768px) {
  iframe {
    height: 400px !important;
  }

  .container {
    padding: 0 30px;
  }

  .header {
    height: 80px;
  }

  .header.scrolled {
    height: 70px;
  }

  .header-content {
    padding-top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
  }

  .header.scrolled .header-content {
    padding-top: 0;
    min-height: 70px;
  }

  /* Mobile: Header layout */
  .header-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    min-height: 80px;
  }

  .header.scrolled .header-content {
    min-height: 70px;
  }

  /* Mobile: Completely hide logo from nav dropdown */
  .nav .logo {
    display: none !important;
  }

  a.header-logo-link {
    display: none;
  }

  /* Mobile: Create logo at header top-left using pseudo-element */
  .header::after {
    content: "";
    position: fixed;
    left: 20px;
    top: 15px;
    width: 50px;
    height: 50px;
    background-image: url("../images/logo-header.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1002;
    cursor: pointer;
  }

  .header.scrolled::after {
    width: 40px;
    height: 40px;
    top: 15px;
  }

  /* Mobile Menu Toggle - Top right of header */
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    right: 20px;
    top: 40px;
    z-index: 11;
  }

  .header.scrolled .mobile-menu-toggle {
    top: 40px;
  }

  /* Mobile Navigation - Full page slide from right */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 30px;
    padding: 100px 0 40px 0;
    justify-content: flex-start;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.active {
    transform: translateX(0);
  }

  .header.scrolled .nav {
    padding-top: 90px;
  }

  /* Nav links styling - Right aligned with slide animation */

  .nav a {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 40px;
    width: 100%;
    text-align: right;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav.active a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered slide-in animation for nav links */
  .nav.active a:nth-of-type(1) {
    transition-delay: 0.2s;
  }

  .nav.active a:nth-of-type(2) {
    transition-delay: 0.3s;
  }

  .nav.active a:nth-of-type(3) {
    transition-delay: 0.4s;
  }

  .nav.active a:nth-of-type(4) {
    transition-delay: 0.5s;
  }

  .nav.active a:nth-of-type(5) {
    transition-delay: 0.6s;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
  }

  /* Memberships Page - Mobile */
  .memberships-page {
    padding-bottom: 80px;
  }

  .memberships-page-bg,
  .memberships-page-overlay {
    height: 500px;
  }

  .memberships-page-bg {
    background-image: url("../images/memberships-mobile.jpg");
    background-repeat: no-repeat;
  }

  .memberships-page-gradient {
    top: 222px;
  }

  .memberships-page::after {
    top: 500px;
    height: calc(100% - 500px);
  }

  .memberships-page-content {
    padding-top: 170px;
  }

  .memberships-page-title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 30px;
  }

  .memberships-page-description {
    padding: 0 10px;
    max-width: 100%;
    margin-bottom: 50px;
  }

  .memberships-crown img {
    width: 44px;
    height: 25px;
  }

  /* About Page - Mobile */
  .about-page {
    min-height: auto;
  }

  .about-page-content {
    padding-top: 170px;
    padding-bottom: 60px;
  }

  .about-page-title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 40px;
  }

  .about-page-description {
    max-width: 100%;
    padding: 0 10px;
  }

  .about-page-description p {
    margin-bottom: 20px;
  }

  /* Contact Page - Mobile */
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-content {
    padding-top: 170px;
    padding-bottom: 40px;
  }

  .contact-hero-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 40px;
  }

  .contact-hero-description {
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 80px;
  }

  .contact-details {
    gap: 30px;
  }

  .contact-form-section {
    padding: 0px 0 80px;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 100%;
  }

  h2.memberships-title.contact-form-title {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #parking-wrap-desktop-only {
    display: none;
  }

  #parking-wrap-mobile-only {
    display: block;
  }

  .parking-section {
    padding-bottom: 80px;
  }

  .parking-title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 40px;
  }

  .parking-description {
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .parking-marker span {
    font-size: 10px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about {
    padding: 60px 0;
  }

  .about-title {
    font-size: 32px;
    margin-bottom: 30px;
    padding-top: 0px;
  }

  .about-description {
    font-size: 16px;
    margin: 0 auto 80px;
  }

  .memberships-background {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0) 100%
      ),
      url("../images/cigar-mobile.jpg");
    background-size: 100%;
    background-position: 100% 100%;
    background-repeat: no-repeat;
  }

  .memberships {
    padding: 80px 0 320px;
  }

  .membership-card {
    padding: 40px 10px;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .memberships-page-card {
    height: 100%;
  }

  .membership-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .memberships-page .membership-cards {
    gap: 20px;
    column-gap: 0px;
  }

  .memberships-title {
    font-size: 44px;
    line-height: 1.285;
  }

  ul.benefits-list li {
    font-size: 14px;
    letter-spacing: -0.15px;
  }

  .mobile-br-only {
    display: block;
  }

  .section-divider img {
    width: 60px;
    height: 40px;
  }

  .card-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .card-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .card-benefits {
    margin-bottom: 20px;
  }

  .newsletter {
    padding: 80px 20px;
    min-height: auto;
  }

  .newsletter-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 32px;
  }

  .newsletter-form {
    max-width: 320px;
    padding: 0;
    margin: 0 auto;
    justify-content: center;
  }

  .email-input {
    width: 240px;
    max-width: 240px;
  }

  .submit-button {
    position: relative;
    right: auto;
    top: auto;
    margin-left: 10px;
  }

  .footer .container {
    padding: 0 30px;
  }

  .footer-logo-wrapper {
    margin-bottom: 40px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .contact-text p {
    font-size: 13px;
  }

  .footer-divider {
    margin-bottom: 40px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    font-size: 12px;
    margin-bottom: 60px;
    flex-direction: column;
  }

  .footer-nav .separator {
    color: #f8f6f2;
    display: none;
  }

  .footer-social {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.about-title,
.about-description,
.membership-card,
.newsletter-title {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

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

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

/* ============================================
   SMOOTH SCROLLING ENHANCEMENT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
