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

body {
    font-family: 'Playfair Display', 'Inter', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    min-height: 100vh;
}

/* Filipino Fire Color Palette */
:root {
    --fire-red: #dc2626;
    --fire-orange: #ea580c;
    --fire-yellow: #fbbf24;
    --ocean-blue: #0284c7;
    --ocean-deep: #0369a1;
    --pearl-white: #fefefe;
    --gold: #f59e0b;
    --sunset-gradient: linear-gradient(135deg, #dc2626 0%, #ea580c 25%, #fbbf24 50%, #0284c7 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.95) 0%, rgba(234, 88, 12, 0.95) 50%, rgba(251, 191, 36, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pearl-white);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.nav-logo a:hover {
    color: var(--gold);
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--sunset-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--pearl-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.3) 0%, 
        rgba(234, 88, 12, 0.2) 25%,
        rgba(251, 191, 36, 0.1) 50%,
        rgba(2, 132, 199, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text {
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.98) 0%, rgba(254, 254, 254, 0.95) 100%);
    padding: 4rem;
    border-radius: 20px;
    color: #1a1a1a;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.2), 0 0 0 3px var(--gold);
    position: relative;
    overflow: hidden;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--sunset-gradient);
    animation: fireGlow 3s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(1.02); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--sunset-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    text-shadow: none;
    position: relative;
}

.hero h1::after {
    content: '🔥';
    position: absolute;
    right: -60px;
    top: 10px;
    font-size: 2rem;
    animation: flameDance 2s ease-in-out infinite;
}

@keyframes flameDance {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

.hero p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: #374151;
    font-style: italic;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--sunset-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
    filter: brightness(1.1);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--pearl-white) 0%, #f0f9ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--ocean-deep);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.about p {
    font-size: 1.375rem;
    color: #374151;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        padding: 2rem;
    }
}

/* Advocacy Page Styles */
.advocacy-hero {
    background: linear-gradient(rgba(3, 105, 161, 0.8), rgba(14, 165, 233, 0.6)), 
                url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?auto=format&fit=crop&w=1920&q=80') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--pearl-white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advocacy-mission {
    background: var(--pearl-white);
    padding: 4rem 0;
}

.advocacy-mission .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--ocean-deep);
    font-style: italic;
}

.advocacy-pillars {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

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

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.pillar-actions {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.pillar-actions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.pillar-actions li:before {
    content: '🔥';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.pillar-actions li:last-child {
    border-bottom: none;
}

.advocacy-issues {
    padding: 5rem 0;
    background: var(--pearl-white);
}

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

.issue-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.issue-card:hover {
    transform: scale(1.02);
}

.issue-image {
    height: 200px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-deep));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.issue-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    padding: 1rem;
}

.issue-content {
    padding: 1.5rem;
}

.issue-content p {
    color: #4a5568;
    line-height: 1.6;
}

.advocacy-programs {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-deep));
    padding: 5rem 0;
    color: white;
}

.advocacy-programs .section-title {
    color: white;
}

.programs-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.programs-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background: var(--fire-orange);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -57px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -57px;
}

.timeline-content h4 {
    color: var(--fire-yellow);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--fire-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advocacy-cta {
    background: var(--sunset-gradient);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.advocacy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0 1rem;
}

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

.btn-secondary:hover {
    background: white;
    color: var(--ocean-deep);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -57px;
        right: auto;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 1rem auto;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advocacy-cta h2 {
        font-size: 2rem;
    }
}

/* Simplified Advocacy Page Styles */
.advocacy-content {
    padding: 4rem 0;
    background: var(--pearl-white);
}

.advocacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.advocacy-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--ocean-deep);
    margin-bottom: 3rem;
    text-align: justify;
}

.advocacy-text h3 {
    color: var(--ocean-deep);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    border-bottom: 3px solid var(--fire-orange);
    padding-bottom: 0.5rem;
}

.advocacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.advocacy-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
    padding-left: 2rem;
    color: #4a5568;
    line-height: 1.6;
}

.advocacy-list li:before {
    content: '🌊';
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
}

.advocacy-list li:last-child {
    border-bottom: none;
}

.cta-section {
    background: linear-gradient(135deg, var(--ocean-blue), var(--ocean-deep));
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.cta-section h3 {
    color: var(--fire-yellow);
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 1rem;
}

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

.btn-secondary:hover {
    background: white;
    color: var(--ocean-deep);
}

/* Responsive Design for Simplified Page */
@media (max-width: 768px) {
    .advocacy-content {
        padding: 2rem 0;
    }
    
    .advocacy-text .lead {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .advocacy-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 1rem auto;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .advocacy-list li {
        padding-left: 1.5rem;
    }
    
    .advocacy-list li:before {
        left: 0;
        top: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(3, 105, 161, 0.8), rgba(14, 165, 233, 0.6)), 
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?auto=format&fit=crop&w=1920&q=80') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-section {
    padding: 5rem 0;
    background: var(--pearl-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.info-header {
    margin-bottom: 3rem;
}

.info-header h2 {
    color: var(--ocean-deep);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.info-header .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    background: var(--ocean-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
}

.info-text h3 {
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.info-text p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    background: var(--ocean-blue);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--ocean-deep);
    transform: translateY(-2px);
}

.social-link i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.inquiries-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.inquiries-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4a5568;
}

.inquiries-list li:before {
    content: '🔥';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: var(--ocean-deep);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.contact-form-container > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--ocean-deep);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
}

.btn-submit {
    background: var(--sunset-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.contact-cta {
    background: var(--sunset-gradient);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 1rem;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--ocean-deep);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .info-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 1rem auto;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
}

/* Updated Homepage Hero with Photo */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    z-index: 2;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.jaymie-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.jaymie-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Enhanced About Section */
.about {
    padding: 5rem 0;
    background: var(--pearl-white);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    color: var(--ocean-deep);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--fire-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--ocean-deep);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* Call to Action Section */
.call-to-action {
    background: var(--sunset-gradient);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.call-to-action p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    min-width: 180px;
}

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

.btn-secondary:hover {
    background: white;
    color: var(--ocean-deep);
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .jaymie-photo {
        max-width: 300px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .call-to-action h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 2rem;
    }
    
    .jaymie-photo {
        max-width: 250px;
        border-radius: 15px;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .call-to-action {
        padding: 3rem 0;
    }
}
