* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.logo {
    margin-bottom: 30px;
}

.logo i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 15px;
    display: block;
}

.logo h1 {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-message h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.main-message p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    width: 75%;
    border-radius: 10px;
    animation: progress 2s ease-in-out;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 75%; }
}

.progress-text {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.9rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    padding: 20px;
    background: rgba(42, 82, 152, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(42, 82, 152, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
    color: #2a5298;
    margin-bottom: 10px;
    display: block;
}

.feature h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Instagram Gallery Styles */
.instagram-gallery {
    margin: 40px 0;
    padding: 30px;
    background: rgba(42, 82, 152, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(42, 82, 152, 0.1);
}

.instagram-gallery h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.instagram-gallery h3 i {
    color: #E4405F;
    font-size: 1.6rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #e0e0e0;
    border-top: 3px solid #2a5298;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E4405F;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(228, 64, 95, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(228, 64, 95, 0.2);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

.instagram-link i {
    font-size: 1.2rem;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-prev {
    left: -60px;
}

.modal-next {
    right: -60px;
}

.contact-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(42, 82, 152, 0.05);
    border-radius: 15px;
}

.contact-info h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-item i {
    color: #2a5298;
    font-size: 1.2rem;
}

.contact-item a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 82, 152, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* Floating Fish Animation */
.floating-fish {
    position: fixed;
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    animation: swim 15s linear infinite;
    z-index: 1;
}

.floating-fish::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -5px;
    width: 0;
    height: 0;
    border-left: 8px solid #4CAF50;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.fish1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.fish2 {
    top: 40%;
    left: -50px;
    animation-delay: 3s;
}

.fish3 {
    top: 60%;
    left: -50px;
    animation-delay: 6s;
}

.fish4 {
    top: 80%;
    left: -50px;
    animation-delay: 9s;
}

@keyframes swim {
    0% {
        transform: translateX(-50px) rotateY(0deg);
    }
    50% {
        transform: translateX(calc(100vw + 50px)) rotateY(0deg);
    }
    51% {
        transform: translateX(calc(100vw + 50px)) rotateY(180deg);
    }
    100% {
        transform: translateX(-50px) rotateY(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content {
        padding: 40px 30px;
        max-width: 98vw;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 30px 10px;
        margin: 10px;
        max-width: 100vw;
    }
    .container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px 15px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .main-message h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 5px;
    }
} 