/* Enhanced Stylesheet for My Rugby Journey */

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 70px;
    background-color: #121212;
    color: #f5f5f5;
}

/* Navbar Styling */
.navbar {
    background: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #00aaff !important;
}

/* Hero Section */
.hero {
    background: url('rugby-bg.jpg') center/cover no-repeat;
    position: relative;
    color: white;
    padding: 120px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero .container {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1, h2 {
    color: #00aaff;
    font-weight: bold;
}

/* Content Styling */
.container {
    max-width: 1100px;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
}

ul li {
    font-size: 1.1rem;
}

/* Image Styling */
img {
    border: 3px solid #00aaff;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

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

/* Footer */
footer {
    background-color: #00aaff;
    color: black;
    padding: 20px 0;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
}

/* Button Styling */
.btn-primary {
    background-color: #00aaff;
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0077cc;
    color: white;
}
