/* VIO Boston - Friends & Family Landing Page */

:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --gold: #c9a962;
    --gold-light: #d4b978;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #aaaaaa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header */
.header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--white);
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gray);
    font-weight: 300;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.1rem;
    color: var(--gray-light);
    font-weight: 300;
    margin-bottom: 3rem;
}

.offer-box {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 300px;
}

.offer-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.offer-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.offer-detail {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Locations Section */
.locations {
    padding: 3rem 1.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.locations h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-2px);
}

.location-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.location-card .address {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.location-card .phone {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.book-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-btn:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

.book-btn:active {
    transform: scale(0.98);
}

/* Referral Section */
.referral-section {
    text-align: center;
    padding: 2rem 1.5rem 4rem;
    max-width: 400px;
    margin: 0 auto;
}

.referral-label {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.optional {
    color: var(--gray);
    font-size: 0.8rem;
}

.referrer-input {
    width: 100%;
    padding: 1rem;
    background: var(--black-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
    transition: border-color 0.3s ease;
}

.referrer-input:focus {
    outline: none;
    border-color: var(--gold);
}

.referrer-input::placeholder {
    color: var(--gray);
}

.referral-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.75rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Mobile Optimizations */
@media (max-width: 600px) {
    .hero {
        padding: 3rem 1.25rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .offer-value {
        font-size: 2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 1.5rem;
    }
}

/* Smooth appearance animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .locations, .referral-section {
    animation: fadeIn 0.6s ease-out;
}

.locations {
    animation-delay: 0.1s;
}

.referral-section {
    animation-delay: 0.2s;
}
