@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* Variables */
:root {
    --accent-color: #F8DC63; /* Puedes cambiar este color según tus preferencias */
}

/* Reset y Estilos Básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #C33C54, #CA5369, #CF6377 );
    /*background: linear-gradient(to bottom right, #FF85A5, #FF99B4, #FFAFC5 );*/
    color: white;
    cursor: none;
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.navbar-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.navbar-links {
    display: flex;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Eventos */
.events-page {
    padding-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-item {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    min-width: 100px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 800;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
}

.event-details {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.event-link {
    display: inline-block;
    background-color: white;
    color: #9c27b0;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.event-link:hover {
    background-color: #f3e5f5;
}

/* Contacto */
.contact-page {
    padding-top: 80px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.submit-button {
    background-color: white;
    color: #9c27b0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #f3e5f5;
}

.contact-info ul {
    list-style-type: none;
}

.contact-info li {
    margin-bottom: 1rem;
}

.contact-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #f3e5f5;
}

/* Footer */
.footer {
    background-color: rgba(211, 203, 203, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Calendario */
.calendar-container {
    background-color: #f4f5f5;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 auto;
}

.fc .fc-col-header-cell {
    color: black !important;
    font-size: 1rem;
}

.fc .fc-daygrid-day-number {
    color: black !important;
    font-size: 1rem;
}

.fc .fc-toolbar-title {
    color: black !important;
    font-size: 1rem;
    font-weight: bold !important;
}

.fc .fc-button {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

#calendar {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

.titulo-calendario {
    padding-top: 100px;
    text-align: center;
    font-size: 3rem;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        margin-top: 1rem;
    }

    .navbar-links a {
        margin-left: 0;
        margin-right: 1rem;
    }

    .page-title {
        font-size: 2.5rem;
        padding-top: 4rem; /* Ajustar padding para pantallas más pequeñas */
    }

    .event-item {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.5rem 1rem;
    }

    .event-date .day {
        margin-right: 0.5rem;
    }

    .contact-form,
    .contact-info {
        min-width: 100%; /* Ajustar el ancho en pantallas pequeñas */
        padding: 1rem;
    }

    .footer-text {
        font-size: 0.875rem;
    }

    .footer-logo img {
        width: 80px;
    }

    .titulo-calendario {
        font-size: 2rem;
        padding-top: 60px;
    }

    .fc .fc-toolbar-title {
        font-size: 0.875rem !important;
    }

    .fc .fc-button {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.75rem;
    }

    .calendar-container {
        padding: 10px;
    }
    #cursor, #cursor-border {
        display: none;
    }
}

/* Cursor personalizado */
#cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

#cursor-border {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease-out;
}