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

:root {
    --background: #ffffff;
    --foreground: #171717;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --pink-600: #db2777;
    --white: #ffffff;
}

body {
    color: var(--foreground);
    background: var(--background);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--gray-100);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2.5rem;
    background-color: var(--red-600);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    width: 16rem;
    height: 16rem;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--white);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--white);
}

.roles-container {
    margin-top: 1rem;
}

.role-tag {
    color: var(--white);
    font-size: 1.125rem;
    margin-right: 0.5rem;
    display: inline-block;
    background-color: var(--red-700);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.divider {
    margin: 1rem auto;
    border-bottom: 1px solid var(--white);
    width: 25%;
}

.divider-small {
    margin: 1rem auto;
    border-bottom: 1px solid var(--gray-300);
    width: 25%;
}

/* About Section */
.about-section {
    width: 100%;
    max-width: 80rem;
    padding: 2.5rem;
    text-align: center;
    background-color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--gray-800);
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    max-width: 80rem;
    padding: 2.5rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.gallery-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

/* Videos Section */
.videos-section {
    width: 100%;
    max-width: 80rem;
    padding: 2.5rem;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Section */
.social-section {
    width: 100%;
    max-width: 80rem;
    padding: 2.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    text-decoration: none;
    font-size: 1.125rem;
}

.social-link:hover {
    text-decoration: underline;
}

.social-link.facebook {
    color: var(--blue-600);
}

.social-link.instagram {
    color: var(--pink-600);
}

.social-link.youtube {
    color: var(--red-600);
}

/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 80rem;
    padding: 2.5rem;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-form {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

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

.form-label {
    display: block;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
    text-align: left;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    padding: 0.5rem;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    height: 7rem;
    resize: vertical;
}

.form-button {
    width: 100%;
    background-color: var(--blue-600);
    color: var(--white);
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-button:hover {
    background-color: var(--blue-700);
}

.form-status {
    margin-top: 1rem;
    color: var(--gray-600);
    text-align: center;
}

/* Footer */
.footer {
    width: 100%;
    padding: 1.25rem;
    text-align: center;
    background-color: var(--gray-200);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.footer-text a {
    color: var(--gray-700);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.2s;
}

/* Stagger animation delays for multiple fade-in elements */
.hero-section .fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-section .fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.role-tag:nth-child(1) {
    animation-delay: 0.3s;
}

.role-tag:nth-child(2) {
    animation-delay: 0.4s;
}

.about-section .fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.about-section .fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.about-section .fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-section,
.videos-section,
.social-section,
.contact-section,
.footer {
    animation-delay: 0.4s;
}
