/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a1419;
    overflow-x: hidden;
    position: relative;
}

/* Parallax Background --*/
.parallax-background {
    position: fixed;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('/website2/assets/main.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
    backface-visibility: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: rgba(10, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 0;
    line-height: 0;
}

.nav-brand img {
    height: 57.5px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    background: transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
    background: transparent;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 25, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta.single {
    gap: 0;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background-color: #d4af37;
    color: #0a1419;
}

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0a1419;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.vision-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('/website2/assets/section2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.vision-section .vision-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 25, 0.45);
    z-index: 0;
}

.vision-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.vision-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.vision-subtitle {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.vision-body {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 700;
    color: #d4af37;
    line-height: 1.5;
}

/* Parallax Divider */
.parallax-divider {
    height: 200px;
    background-image: url('/website2/assets/main.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 25, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .parallax-divider {
        height: 120px;
        background-attachment: scroll;
    }
}

.experience-section {
    position: relative;
    padding: 5rem 0 4rem;
    background-image: url('/website2/assets/exp_bck.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.experience-section .experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 25, 0.45);
    z-index: 0;
}

.experience-content {
    position: relative;
    z-index: 1;
}

.experience-title {
    margin-bottom: 2.5rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem 3rem;
    margin-bottom: 2.5rem;
}

.experience-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-item {
    text-align: left;
}

.experience-heading.gold {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.experience-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.experience-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.section-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Value Proposition Section */
.value-proposition-section {
    background-color: rgba(10, 20, 25, 0.95);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.value-proposition-section .section-title {
    margin-bottom: 3rem;
}

.value-text {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: #d4af37;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Offering Section */
.offering-section {
    background-color: rgba(15, 26, 32, 0.95);
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.offering-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.4;
}

.offering-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 32, 0.7);
    z-index: 2;
}

.offering-section .container {
    position: relative;
    z-index: 3;
}

.offering-section .section-title {
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.offering-section .section-intro {
    margin-bottom: 5rem;
    line-height: 1.9;
    opacity: 0.95;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 4rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-image {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    transform: scale(1.02);
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-image::after {
    opacity: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 1.8rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: width 0.4s ease;
}

.feature-card:hover .feature-title::after {
    width: 100px;
}

.feature-text {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.85;
    letter-spacing: 0.015em;
    font-weight: 300;
}

/* Experience Section */
.experience-section {
    background-color: rgba(10, 20, 25, 0.95);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.experience-title {
    font-size: clamp(2.3rem, 5.75vw, 4rem);
}

.experience-narrative {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.experience-feature-item {
    text-align: center;
    padding: 2rem;
}

.experience-heading {
    font-size: clamp(1.8rem, 3.2vw, 2.2rem);
    font-weight: 400;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.experience-text {
    font-size: clamp(1.25rem, 2.4vw, 1.35rem);
    color: #ffffff;
    line-height: 1.8;
}

/* Story Sections (after Experience) */
.story-section {
    background-color: rgba(10, 20, 25, 0.9);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.story-section .container {
    position: relative;
    z-index: 2;
}

.story-title {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.story-body {
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    max-width: 900px;
}

.story-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse > * {
    direction: ltr;
}

.story-media {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e2a30, #0f181d);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px dashed rgba(212, 175, 55, 0.5);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-heading {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.story-text {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
}

/* Benefits Section */
.benefits-section {
    background-color: rgba(15, 26, 32, 0.95);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.benefits-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #d4af37;
    text-align: center;
    margin: 2rem 0 1rem;
}

.benefits-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.venue-card {
    background-color: #1a2529;
    border-radius: 4px;
  overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.venue-card-image {
    width: 100%;
    height: 200px;
    background-color: #2a3539;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 3rem;
}

.venue-card-content {
    padding: 1.5rem;
    text-align: center;
}

.venue-card-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Membership Section */
.membership-section {
    min-height: 100vh;
    position: relative;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/website2/assets/main.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 25, 0.4);
    z-index: 1;
}

.membership-section .container {
    position: relative;
    z-index: 2;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.membership-tier-card {
    background: rgba(15, 26, 32, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.membership-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.membership-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(15, 26, 32, 0.95);
}

.membership-tier-card:hover::before {
    opacity: 1;
}

.membership-tier-card:nth-child(1) {
    border-color: rgba(192, 192, 192, 0.3);
}

.membership-tier-card:nth-child(1):hover {
    border-color: rgba(192, 192, 192, 0.6);
    box-shadow: 0 20px 50px rgba(192, 192, 192, 0.2);
}

.membership-tier-card:nth-child(2) {
    border-color: rgba(212, 175, 55, 0.3);
}

.membership-tier-card:nth-child(2):hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.membership-tier-card:nth-child(3) {
    border-color: rgba(229, 228, 226, 0.3);
}

.membership-tier-card:nth-child(3):hover {
    border-color: rgba(229, 228, 226, 0.6);
    box-shadow: 0 20px 50px rgba(229, 228, 226, 0.2);
}

.tier-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.5rem;
    white-space: nowrap;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.tier-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.tier-benefits li::before {
    content: '✓';
    color: #d4af37;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.tier-benefits li:last-child {
    margin-bottom: 0;
}

/* Join Section */
.join-section {
    background-color: rgba(10, 20, 25, 0.95);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.join-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.4;
}

.join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 25, 0.7);
    z-index: 2;
}

.join-section .container {
    position: relative;
    z-index: 3;
}

.join-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.join-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.join-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    background-color: #d4af37;
    color: #0a1419;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.join-btn:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
}

.newsletter-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #d4af37;
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    background-color: #1a2529;
    border: 1px solid #2a3539;
    color: #ffffff;
    border-radius: 2px;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d4af37;
}

.newsletter-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: #d4af37;
    color: #0a1419;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.newsletter-submit:hover {
    background-color: #b8941f;
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.newsletter-disclaimer .footer-link {
    color: #d4af37;
    text-decoration: none;
}

.newsletter-disclaimer .footer-link:hover {
    text-decoration: underline;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.newsletter-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.newsletter-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Footer */
.footer {
    background-color: rgba(10, 20, 25, 0.98);
    padding: 4rem 0 2rem;
    border-top: 1px solid #1a2529;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    display: flex;
        flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a2529;
    color: #888;
    font-size: 0.9rem;
}

.footer-link {
    color: #d4af37;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-address {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer .container > .footer-address {
    margin-top: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable parallax on mobile for better performance */
    .parallax-background {
        position: fixed;
        transform: none !important;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .feature-card.reverse {
        direction: ltr;
    }

    .feature-image {
        height: 300px;
    }

    .feature-content {
        padding: 1rem 0;
    }

    .offering-section {
        padding: 4rem 0;
    }

    .offering-section .section-intro {
        margin-bottom: 3rem;
    }

    .feature-grid {
        gap: 3rem;
    }

    .story-card {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.5rem;
    }

    .story-card.reverse {
        direction: ltr;
    }

    .story-media {
        height: 260px;
    }

    .story-section {
        padding: 4.5rem 0;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-submit {
        width: 100%;
    }

    .join-options {
        flex-direction: column;
        align-items: center;
    }

    .join-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-tiers {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .membership-tier-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-image {
        height: 250px;
    }

    .feature-grid {
        gap: 2.5rem;
    }

    .story-card {
        padding: 1.25rem;
    }

    .story-media {
        height: 220px;
    }
}

/* Terms and Privacy Pages Styles */
.terms-page,
.privacy-page {
    min-height: 100vh;
    position: relative;
    padding: 120px 0 4rem;
    background-color: rgba(10, 20, 25, 0.95);
}

.terms-content-box,
.privacy-content-box {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-title,
.privacy-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.terms-content,
.privacy-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-intro,
.privacy-intro {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: #d4af37;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.terms-text,
.privacy-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.terms-section,
.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section:last-child,
.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section-title,
.privacy-section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    color: #d4af37;
    margin-bottom: 1.2rem;
    margin-top: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.terms-content ul,
.privacy-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.terms-content ul li,
.privacy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.terms-content ul li::before,
.privacy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2em;
}

.terms-content strong,
.privacy-content strong {
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .terms-content-box,
    .privacy-content-box {
        padding: 0 1.5rem;
    }

    .terms-content,
    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .terms-title,
    .privacy-title {
        margin-bottom: 2rem;
    }

    .terms-section,
    .privacy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-page,
    .privacy-page {
        padding: 100px 0 3rem;
    }

    .terms-content-box,
    .privacy-content-box {
        padding: 0 1rem;
    }

    .terms-content,
    .privacy-content {
        padding: 1.5rem 1rem;
    }
}

/* Contact Page Styles */
    .contact-page {
    min-height: 100vh;
    position: relative;
    padding: 120px 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .contact-content-box {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    padding: 0 2rem;
    }

    .contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    }

    .contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-group {
    display: flex;
        flex-direction: column;
    gap: 0.5rem;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-form-group label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.contact-input,
.contact-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-submit-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-submit-btn:hover:not(:disabled) {
    background-color: #ffffff;
    color: #0a1419;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-status-message {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
}

.contact-status-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-status-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .contact-content-box {
        padding: 0 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-title {
        margin-bottom: 2rem;
    }
}
