html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #ff4081;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav {
    background-color: #333;
    color: white;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
}

.container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 2rem;
    background-color: white;
    margin: 1rem auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    width: 100%;
}

form {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-top: 1rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button, .btn {
    background-color: #ff4081;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

button:hover, .btn:hover {
    background-color: #e0356d;
}

.important-dates {
    text-align: center;
    margin: 2rem 0;
}

.date-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.date-card {
    background: linear-gradient(135deg, #ff4081, #ff8a65);
    color: white;
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.date-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.date-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.counter {
    text-align: center;
    margin: 2rem 0;
}

.counter h3 {
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 3rem;
    color: #ff4081;
}

.slider {
    margin: 2rem 0;
    text-align: center;
}

.slider-container {
    display: flex;
    overflow: hidden;
}

.slider-item {
    flex: 1;
    margin-right: 1rem;
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.ani {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.ani img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.ani img:hover {
    transform: scale(1.05);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.popup-content h2 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .date-cards {
        flex-direction: column;
        align-items: center;
    }

    .slider-container {
        flex-direction: column;
    }

    .slider-item {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

