/* Home Page Styles - Converted from React/Tailwind */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
    --navy: #002642;
    --gold: #C5A059;
    --off-white: #F9F7F1;
}

/* Base Styles */
.home-page-wrapper {
    min-height: 100vh;
    background: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.home-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: visible;
    padding: 60px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .home-hero-section {
        height: 70vh;
        min-height: 70vh;
    overflow: hidden;
        padding: 0;
    }
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #002642;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 75px 24px 64px 24px; /* pt-[75px] pb-[64px] px-[24px] */
    width: 100%;
    display: flex;
    align-items: center;
    min-height: auto;
}

@media (min-width: 768px) {
    .home-hero-content {
        padding: 48px 24px 64px 24px; /* md:pt-12 md:pb-16 px-[24px] */
        height: 100%;
    }
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .home-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.home-hero-text {
    text-align: center;
    width: 100%;
    padding: 0;
}

@media (min-width: 768px) {
    .home-hero-text {
        text-align: left;
    }
}

.home-hero-title {
    font-size: 2.25rem; /* text-4xl = 36px */
    color: white;
    margin-bottom: 24px; /* mb-6 */
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .home-hero-title {
        font-size: 3rem; /* text-5xl = 48px */
        line-height: 1.1;
    }
}

.home-hero-subtitle {
    font-size: 1.25rem; /* text-xl = 20px */
    color: rgba(255, 255, 255, 0.9); /* text-white/90 */
    margin-bottom: 16px; /* mb-4 */
    font-family: 'Inter', sans-serif;
    font-weight: 300; /* font-light */
    line-height: 1.3;
}

@media (min-width: 768px) {
    .home-hero-subtitle {
        font-size: 1.5rem; /* text-2xl = 24px */
    }
}

.home-hero-price {
    font-size: 1.5rem; /* text-2xl = 24px */
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.home-hero-price .price-old {
    text-decoration: line-through;
    opacity: 0.8;
}

.home-hero-promo {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

.home-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px; /* gap-4 */
    justify-content: center;
    margin-bottom: 24px; /* mb-6 */
}

@media (min-width: 640px) {
    .home-hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .home-hero-buttons {
        justify-content: flex-start;
    }
}

.home-btn-primary {
    background: linear-gradient(to right, #d4af37, #C5A059, #b8944d);
    color: white;
    padding: 12px 24px; /* py-3 px-6 */
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* default text size */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
}

.home-btn-primary:hover {
    background: linear-gradient(to right, #e5c050, #d4b16e, #c9a55e);
    color: white;
}

.home-btn-secondary {
    color: white;
    border: 2px solid white; /* border-2 border-white */
    padding: 12px 24px; /* py-3 px-6 */
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* default text size */
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.home-btn-secondary:hover {
    background: white;
    color: var(--navy);
}

.home-hero-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    margin-top: 16px;
    margin-bottom: 0;
}

.home-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .home-hero-image {
        justify-content: flex-end;
    }
}

.home-hero-image img {
    width: 100%;
    max-width: 48rem;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
    display: block;
}

@media (max-width: 767px) {
    .home-hero-image {
        margin-top: 24px;
        margin-bottom: 0;
    }
    
    .home-hero-image img {
        max-width: 100%;
    }
}

/* Audience Section */
.home-audience-section {
    padding: 80px 24px;
    background: white;
}

.home-audience-container {
    max-width: 1000px;
    margin: 0 auto;
}

.home-audience-item {
    margin-bottom: 96px;
}

.home-audience-item:last-child {
    margin-bottom: 0;
}

.home-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .home-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-audience-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.home-audience-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.home-audience-content {
    text-align: center;
}

@media (min-width: 768px) {
    .home-audience-content {
        text-align: left;
    }
}

.home-audience-title {
    font-size: 1.875rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.home-audience-subtitle {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.home-audience-description {
    color: #374151;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    line-height: 1.75;
    font-size: 1.125rem;
}

.home-btn-outline {
    color: var(--navy);
    border: 1px solid var(--navy);
    padding: 10px 24px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.home-btn-outline:hover {
    background: var(--navy);
    color: white;
}

.home-audience-cta {
    text-align: center;
    margin-top: 64px;
    padding: 48px 24px;
    background: var(--off-white);
    border-radius: 8px;
}

@media (min-width: 768px) {
    .home-audience-cta {
        padding-left: 0;
        padding-right: 0;
    }
}

.home-audience-cta h4 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    padding-top: 8px;
    padding-bottom: 8px;
}

.home-audience-cta p {
    color: #4b5563;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

.home-audience-cta .home-btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Reverse order for alternating layouts */
@media (min-width: 768px) {
    .home-audience-reverse .home-audience-image-wrapper {
        order: 2;
    }
    
    .home-audience-reverse .home-audience-content {
        order: 1;
    }
}

/* Subscribe CTA Section */
.home-subscribe-cta-section {
    padding: 48px 24px;
    background: var(--navy);
}

@media (min-width: 768px) {
    .home-subscribe-cta-section {
        padding: 56px 48px;
    }
}

.home-subscribe-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.home-subscribe-cta-title {
    font-size: 2.25rem;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .home-subscribe-cta-title {
        font-size: 3rem;
    }
}

.home-subscribe-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.home-subscribe-cta-price {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 32px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.home-subscribe-cta-section .home-btn-primary {
    padding: 14px 40px;
    font-size: 1rem;
    min-width: 200px;
}

.home-subscribe-cta-footer {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .home-subscribe-cta-footer {
        margin-top: 24px;
    }
}

/* Testimonials Section */
.home-testimonials-section {
    padding: 48px 24px;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .home-testimonials-section {
        padding: 56px 24px;
    }
}

.home-testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.home-testimonials-header {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .home-testimonials-header {
        margin-bottom: 40px;
    }
}

.home-testimonials-title {
    font-size: 2.25rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .home-testimonials-title {
        font-size: 3rem;
    }
}

.home-testimonials-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    font-family: 'Inter', sans-serif;
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .home-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 64px;
    }
}

.home-testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.home-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.home-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.home-testimonial-header > div {
    flex: 1;
    text-align: left;
}

.home-testimonial-name {
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.2;
}

.home-testimonial-title {
    font-size: 0.8125rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.2;
}

.home-testimonial-quote {
    color: #374151;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-size: 0.8125rem;
}

.home-testimonials-cta {
    text-align: center;
}

.home-testimonials-cta .home-btn-primary {
    padding: 14px 40px;
    font-size: 1rem;
    min-width: 200px;
}
