/* Custom styles to match the original website */

/* Navigation styles */
nav a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Specific navigation colors */
nav a:nth-child(1) {
    background-color: #3b82f6;
    border: 2px solid #3b82f6;
    color: white;
}

nav a:nth-child(2) {
    background-color: #f97316;
    border: 2px solid #f97316;
    color: white;
}

nav a:nth-child(3) {
    background-color: #a855f7;
    border: 2px solid #a855f7;
    color: white;
}

nav a:nth-child(4) {
    background-color: #14b8a6;
    border: 2px solid #14b8a6;
    color: white;
}

nav a:nth-child(5) {
    background-color: #ec4899;
    border: 2px solid #ec4899;
    color: white;
}

nav a:nth-child(6) {
    background-color: #6366f1;
    border: 2px solid #6366f1;
    color: white;
}

nav a:nth-child(7) {
    background-color: #ef4444;
    border: 2px solid #ef4444;
    color: white;
}

/* Hero section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/marina_background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Contact card */
.contact-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

/* Mobile menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu a {
        display: block;
        padding: 0.75rem 1rem;
        margin: 0.5rem 0;
    }
}

/* About section */
.about-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.service-button {
    background-color: #f97316;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-align: center;
    margin-bottom: 2rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #ea580c;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-image {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Map section */
.map-section {
    padding: 4rem 0;
    text-align: center;
}

.map-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #6b7280;
}

/* Association section */
.association-section {
    padding: 4rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.association-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.association-logo {
    height: 6rem;
}

/* Social media section */
.social-section {
    padding: 2rem 0;
    background-color: #1f2937;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.mail-icon {
    color: #ec4899;
}

.youtube-icon {
    color: #3b82f6;
}

