body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url('../../assets/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    flex: 1;
}
header {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #ff6f61;
    animation: fadeInDown 1s ease-in-out;
}
nav {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 0;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.3s, color 0.3s;
}
nav ul li a:hover {
    background: #ff6f61;
    color: #000;
}
.content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
footer {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    border-top: 2px solid #ff6f61;
    animation: fadeInUp 1s ease-in-out;
}
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}
.gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 400px;
    border-radius: 15px;
    animation: fadeIn 1s ease-in-out;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    border-radius: 15px;
    transform: scale(1.05);
}
.gallery img.active {
    opacity: 1;
    transform: scale(1);
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 1s ease-in-out forwards;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ff6f61;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}
.content h2 {
    color: #ff6f61;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.content p, .content ul {
    font-size: 18px;
    line-height: 1.8;
}
.content ul {
    list-style-type: none;
    padding: 0;
}
.content ul li {
    margin: 10px 0;
    animation: fadeIn 1s ease-in-out;
}
.content ul li a {
    color: #ff6f61;
    text-decoration: none;
    transition: color 0.3s;
}
.content ul li a:hover {
    color: #fff;
}
.content hr {
    border: 0;
    height: 1px;
    background: #ff6f61;
    margin: 20px 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.content ul li a {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.content ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6f61;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}
.content ul li a:hover::before {
    transform: translateX(0);
}
.content {
    position: relative;
    overflow: hidden;
}
.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 111, 97, 0.5), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.content:hover::before {
    opacity: 1;
}
.content h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.content p {
    font-size: 1.2em;
    line-height: 1.6;
}
.content ul li a {
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}
.content ul li a:hover {
    background: #ff6f61;
    color: #000;
}
.gallery {
    position: relative;
    overflow: hidden;
}
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 111, 97, 0.5), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.gallery:hover::before {
    opacity: 1;
}
.gallery img {
    transition: transform 0.5s ease-in-out;
}
.gallery img:hover {
    transform: scale(1.1);
}
footer {
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 111, 97, 0.5), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
footer:hover::before {
    opacity: 1;
}
