@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
/* Paleta de Colores Club de Natacion */
:root {
    --primary-blue: #0056b3; /* Azul botones */
    --dark-blue: #13294b;    /* Azul texto navbar */
    --light-blue: #e0f0ff;
    --accent-black: #212529;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--accent-black);
}

/* Navbar */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-custom .navbar-brand {
    color: var(--dark-blue);
}

.navbar-custom .nav-link {
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-custom .nav-link:hover {
    color: var(--primary-blue);
}

.navbar-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 40, 100, 0.4), rgba(0, 40, 100, 0.6)), url('https://images.unsplash.com/photo-1530549387789-4c1017266635?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 2rem 10rem 2rem;
    position: relative;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p.lead {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.hero-wave .shape-fill {
    fill: #f8f9fa;
}

/* Botones */
.btn-primary-custom {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Secciones de Entrenadores y Nadadores */
.person-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}
.person-card:hover {
    transform: translateY(-5px);
}
.person-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}
.person-info {
    padding: 1.5rem;
}
.person-role {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-custom {
    background-color: var(--accent-black);
    color: #ffffff;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-custom a {
    color: #a0c4ff;
    text-decoration: none;
}

.footer-custom a:hover {
    color: #ffffff;
}

.text-primary-custom {
    color: var(--dark-blue) !important;
}


