/* ============================================================
   FAST TOWN — GLOBAL STYLESHEET
   GoDaddy / Static HTML Version — Enhanced
   ============================================================ */

/* BASE RESET & TYPOGRAPHY */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background-color: #000; 
    color: #f1f1f1; 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* UTILITY CLASSES */
.serif-title { font-family: 'Playfair Display', serif; font-weight: 400; }
.italic { font-style: italic; }
.text-center { text-align: center; }
.eyebrow { display: block; text-transform: uppercase; color: #888; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 20px; }
.lead-text { font-size: 1.25rem; font-weight: 300; margin-bottom: 20px; line-height: 1.8; }
.fade-in { color: #aaa; font-size: 1.05rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #222;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.fallback-logo { font-size: 1.2rem; font-weight: 600; letter-spacing: 2px; color: #fff; text-decoration: none; }
.main-logo { height: 40px; width: auto; }

nav { display: flex; align-items: center; gap: 30px; }
nav a, .dropbtn {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    padding: 0;
}
nav a:hover, .dropbtn:hover { opacity: 0.6; }
.active-nav { opacity: 0.6; border-bottom: 1px solid #fff; padding-bottom: 5px; }

/* CONTACT LINK */
.contact-link { 
    border: 1px solid #444; 
    padding: 8px 18px !important; 
    transition: all 0.3s; 
}
.contact-link:hover { 
    background: #fff !important; 
    color: #000 !important; 
    opacity: 1 !important; 
    border-color: #fff; 
}

/* DROPDOWN LOGIC */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a0a0a;
    min-width: 180px;
    border: 1px solid #333;
    z-index: 10000;
}
.dropdown-content a { display: block; padding: 15px 20px; border-bottom: none; font-size: 0.8rem; }
.dropdown-content a:hover { background-color: #1a1a1a; padding-bottom: 15px; }
.dropdown:hover .dropdown-content { display: block; }

/* ============================================================
   HAMBURGER MENU (Mobile)
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 10001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    transition: opacity 0.3s;
}
.mobile-nav a:hover { opacity: 0.6; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background-color: #111;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.hero-content { max-width: 800px; position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-family: 'Playfair Display', serif; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: #ddd; margin-bottom: 40px; font-weight: 300; }
.cta-btn { 
    display: inline-block; 
    padding: 15px 35px; 
    background: #fff; 
    color: #000; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    font-weight: 600;
    transition: background 0.3s;
}
.cta-btn:hover { background: #ccc; }

/* ============================================================
   LAYOUT SECTIONS
   ============================================================ */
.content-section { padding: 100px 5%; }
.alternate-bg { background-color: #050505; }
.glass-container { max-width: 900px; margin: 0 auto; }

/* PENTHOUSES / ABOVE THE SKYLINE SECTION */
.penthouse-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.penthouse-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.penthouse-content {
    position: relative;
    z-index: 2;
    padding: 80px 5%;
    max-width: 650px;
}
.penthouse-ornament {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    display: block;
    opacity: 0.6;
    font-family: 'Playfair Display', serif;
}

/* ============================================================
   GRIDS
   ============================================================ */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: center; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.card { background: #111; padding: 40px; border: 1px solid #222; transition: 0.3s; }
.card:hover { border-color: #555; transform: translateY(-5px); }
.card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.card p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }

/* Background image cards */
.card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card-bg h3 { color: #fff; }
.card-bg p { color: #e0e0e0; }

/* ============================================================
   FAQ LIST
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 40px; }
.faq-item { border-bottom: 1px solid #222; padding-bottom: 30px; }
.faq-item h4 { font-size: 1.2rem; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.faq-item p { color: #aaa; font-size: 0.95rem; }

/* ============================================================
   ACCORDION (Amenities page)
   ============================================================ */
.accordion-wrapper { max-width: 1000px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid #222; overflow: hidden; }
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 30px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s;
}
.accordion-header:hover { opacity: 0.7; }
.accordion-icon { font-size: 1.8rem; font-weight: 300; transition: transform 0.3s; color: #888; line-height: 1; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner { padding: 0 0 40px 0; color: #aaa; font-size: 1rem; line-height: 1.8; }
.accordion-body-inner p { margin-bottom: 15px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrapper { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #888; }
.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 12px 0;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: #fff; }
.form-group select option { background: #111; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit-btn {
    background: #fff; color: #000; border: none; padding: 15px 40px;
    font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    cursor: pointer; transition: background 0.3s; font-family: 'Inter', sans-serif;
}
.form-submit-btn:hover { background: #ccc; }

/* INVESTOR LOGIN */
.login-card { max-width: 480px; margin: 0 auto; background: #0a0a0a; border: 1px solid #222; padding: 60px 50px; }
.login-divider { border: none; border-top: 1px solid #222; margin: 30px 0; }
.login-note { font-size: 0.85rem; color: #666; text-align: center; margin-top: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 80px 5% 40px; background: #020202; border-top: 1px solid #111; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.signup-form { margin-bottom: 60px; }
.signup-form input {
    background: transparent; border: none; border-bottom: 1px solid #555;
    padding: 10px; color: #fff; width: 300px; font-size: 1rem; outline: none;
    font-family: 'Inter', sans-serif;
}
.signup-form button {
    background: transparent; color: #fff; border: 1px solid #555;
    padding: 10px 25px; margin-left: 10px; cursor: pointer; text-transform: uppercase; 
    letter-spacing: 1px; font-family: 'Inter', sans-serif; transition: all 0.3s;
}
.signup-form button:hover { background: #fff; color: #000; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; font-size: 0.8rem; color: #666; }
.social-links a { color: #666; text-decoration: none; margin-left: 20px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; transition: color 0.3s; }
.social-links a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 900px) {
    .split-grid, .amenities-grid { grid-template-columns: 1fr; gap: 40px; }
    nav { display: none; }
    .hamburger { display: flex; }
    .signup-form input { width: 100%; margin-bottom: 20px; }
    .signup-form button { margin-left: 0; display: block; width: 100%; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 20px; }
    .social-links { margin-top: 20px; }
    .social-links a { margin: 0 10px; }
    .form-grid { grid-template-columns: 1fr; }
    .login-card { padding: 40px 30px; }
    .penthouse-content { padding: 60px 5%; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .content-section { padding: 60px 5%; }
    .card { padding: 30px; }
    .accordion-header { font-size: 1.1rem; }
}

/* ============================================================
   PROFESSIONAL Q&A VISUALS (Daytona Card)
   ============================================================ */
.qa-visual-container {
    height: 100%;
}

.qa-image-card {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
    border: 1px solid #222;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: all 0.4s ease;
}

.qa-image-card:hover {
    border-color: #555;
    transform: translateY(-5px);
}

.qa-overlay {
    position: relative;
    z-index: 2;
}

/* Ensure image stays below text on mobile and doesn't get squished */
@media (max-width: 900px) {
    .qa-image-card {
        min-height: 350px !important;
        margin-top: 40px;
    }
}
