/* SOHO Gym + Recovery - Luxury Landing Page Styles */

/* Font imports */
@import url('https://use.typekit.net/xyz.css'); /* Replace with actual Butler font import */
@font-face {
    font-family: 'Butler';
    src: url('https://yourbutlerfonturl.com/butler.woff2') format('woff2'); /* Replace with actual Butler font URL */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gintronic';
    src: url('https://yourgintronicfonturl.com/gintronic.woff2') format('woff2'); /* Replace with actual Gintronic font URL */
    font-weight: normal;
    font-style: normal;
}

/* Base Styles */
:root {
    --beige: #EDE8DD;
    --green: #9BAA91;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #707070;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gintronic', sans-serif;
    background-color: var(--beige);
    color: var(--black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo, .footer-logo {
    font-family: 'Butler', serif;
    font-weight: normal;
}

.container {
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    font-size: 42px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--green);
    margin: 20px auto 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    font-family: 'Gintronic', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* 1. Hero Section */
.section-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: 8px;
}

.tagline {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtext {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px;
    letter-spacing: 2px;
}

.scroll-cue {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-cue i {
    margin-top: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 2. Brand Introduction Section */
.section-brand {
    background-color: var(--white);
}

.brand-image {
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-text {
    padding: 30px;
}

.brand-text .lead {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.brand-text p {
    margin-bottom: 20px;
}

/* 3. Visual Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 2px;
}

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

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-overlay h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

/* 4. Core Pillars Section */
.section-pillars {
    background-color: var(--beige);
    padding: 100px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.pillar-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 0;
    text-align: left;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pillar-icon {
    font-size: 24px;
    color: var(--green);
    margin-bottom: 20px;
}

.pillar-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.pillar-item p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar-item .learn-more {
    display: flex;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--green);
    text-decoration: none;
    gap: 1rem;
    font-weight: 500;
}

.pillar-item .learn-more:hover::after {
    margin-left: 12px;
}

/* Responsive adjustments for pillars grid */
@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* 5. Founder Statement / Brand Philosophy */
.section-philosophy {
    background-color: var(--beige);
    position: relative;
}

.founder-image {
    width: 100%;
    height: 400px;
    background-color: var(--gray);
    border-radius: 2px;
    background-image: url(../images/founder.jpg);
}

.founder-quote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 40px;
    border-left: 2px solid var(--green);
}

.founder-name {
    font-size: 18px;
    text-align: right;
}
/* 6. Facility Section */
.facility-section { height:100vh; width:100%; position:relative; }
.facility-images  {
  display:flex; width:100%; height:100%;
  overflow:hidden;                /* user can't scroll it directly */
  touch-action:pan-y;             /* allow vertical page scroll */             /* let horizontal gestures through */
  scroll-snap-type:x mandatory;   /* native snap fallback */
  -webkit-overflow-scrolling:touch;
}
.facility-images img {
  flex:0 0 100%;
  width:100%; height:100%; object-fit:cover;
  scroll-snap-align:start;
}
	
.facility-title {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 3rem;
    position: absolute;
    width: 100%;
    text-align: center;
}

.facility-title h1 {
    font-size: 4.5rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}



.facility-title h1::after {
    background-color: #ffffff;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
}

.dot {
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  #ffffff;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    height: 3px;
    width: 40px;
}

.dot.active::before {
    transform: translateX(0);
}
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 767px) {
    .slider-dots {
        bottom: 30px;
        gap: 15px;
        max-width: 250px;
    }
    
    .dot {
        height: 1.5px;
    }
    
    .dot.active {
        height: 2px;
    }
}

/* 7. Contact Form Section */
.section-contact {
    background-color: var(--white);
    padding: 100px 0;
}

.contact-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.floating-label {
    position: relative;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--gray);
    background-color: transparent;
    font-family: 'Gintronic', sans-serif;
    font-size: 16px;
    color: var(--black);
    transition: border-color 0.3s ease;
}

.floating-label input:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: var(--green);
}

.floating-label label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: var(--gray);
    pointer-events: none;
    transition: 0.3s ease all;
}

.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--green);
}

.btn-submit {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--black);
    color: var(--white)!important;
}

.form-response {
    padding: 20px;
    text-align: center;
    display: none;
}

.form-response.success {
    background-color: rgba(155, 170, 145, 0.2);
    color: var(--green);
    display: block;
}

.form-response.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    display: block;
}

/* 8. Mini FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Butler', serif;
    font-size: 24px;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 9. Sticky CTA Banner */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--green);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}
.sticky-cta.hidden {
    transform: translateY(100%)!important;
}

.sticky-cta p {
    margin: 0;
    display: inline-block;
    margin-right: 20px;
}

.btn-cta {
    background-color: var(--white);
    color: var(--green);
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta:hover {
    background-color: var(--black);
    color: var(--white);
}

/* 10. Footer */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0;
}

.footer-logo {
    font-size: 32px;
    letter-spacing: 5px;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--green);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 48px;
    }
    
    .founder-image {
        margin-bottom: 30px;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 36px;
    }
    
    .subtext {
        font-size: 16px;
    }
    
    .logo {
        font-size: 36px;
    }
    
    .brand-text .lead {
        font-size: 20px;
    }
    
    .founder-quote {
        font-size: 20px;
        padding-left: 20px;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        text-align: center;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 28px;
    }
} 