/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, #f8fffe 100%);
}

.section-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(106, 156, 137, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 156, 137, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
}

.benefit-card h3 {
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-card p {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}


/* About Catherine Section */
.about-catherine {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--color-primary);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
}

.about-text h2:after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    position: absolute;
    bottom: -10px;
    left: 0;
}

.about-description {
    margin-bottom: 2.5rem;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.philosophy {
    font-style: italic;
    color: var(--color-secondary);
    font-size: 1.15rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-light), rgba(163, 213, 193, 0.3));
    border-left: 4px solid var(--color-accent);
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
    position: relative;
}

.philosophy:before {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.image-placeholder {
    width: 320px;
    height: 420px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-accent) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-accent);
    font-style: italic;
    border: 3px solid var(--color-accent);
    box-shadow: 0 15px 40px rgba(106, 156, 137, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
}

.studio-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(106, 156, 137, 0.3);
    position: relative;
}

.studio-badge i {
    font-size: 1rem;
    color: var(--color-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
    
    .philosophy {
        text-align: left;
        margin: 1.5rem 0;
    }
    
    .image-placeholder {
        width: 280px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .philosophy {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 320px;
    }
    
    .studio-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Studio Link Styling */
.studio-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

.studio-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.studio-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.studio-link:hover:after {
    width: 100%;
}

/* Optional: Add a small external link icon */
.studio-link:before {
    content: '🔗';
    font-size: 0.8em;
    margin-right: 0.3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-link:hover:before {
    opacity: 1;
}

.profile-image {
    width: 320px;
    height: 420px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(106, 156, 137, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
}

.profile-image:hover {
    transform: translateY(-5px);
}

.catherine-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.catherine-photo:hover {
    transform: scale(1.05);
}

/* Remove the old .image-placeholder styles and replace with above */

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-image {
        width: 280px;
        height: 360px;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 250px;
        height: 320px;
    }
}

/* Video Card Styling */
.video-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catherine-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed from center to flex-start */
    padding-top: 2rem; /* Add some padding from top */
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.video-card:hover .catherine-video {
    transform: scale(1.02);
}

.play-button {
    width: 70px; /* Slightly smaller */
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Slightly smaller */
    color: var(--text-light);
    margin-top: 0.5rem; /* Reduced margin */
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(106, 156, 137, 0.4);
}

.video-card:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(106, 156, 137, 0.6);
}

.play-button i {
    margin-left: 4px; /* Adjust play icon position */
}

.video-caption {
    color: var(--text-light);
    font-size: 1.2rem; /* Slightly smaller */
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    margin-bottom: 0.5rem; /* Add some bottom margin */
}
/* Hide overlay when video is playing */
.video-card.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-overlay {
        padding-bottom: 1.5rem;
    }
    
    .play-button {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .video-caption {
        font-size: 1rem;
    }
}