@import url();
/*home page design*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

/* Navigation Bar */
.nav-bar {
    background-color: #ffffff; /* Light blue */
    width: auto;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 150px;
    width: 150px; /* Larger than nav items */
    margin-right: 30px;
}

/* Add to your existing CSS */
.auth-buttons {
    margin-left: auto; /* Pushes buttons to the right */
    display: flex;
    gap: 2px;
}
/*Sign in and sign out button design*/
.sign-in-btn, .sign-up-btn {
    padding: 8px 16px;
    width: 100px;
    margin-right: 0px;
    gap: 5px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.sign-in-btn {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
}

.sign-in-btn:hover {
    background-color: rgba(255,255,255,0.3);
}

.sign-up-btn {
    background-color: #1E90FF; /* Dodger blue */
    color: white;
}

.sign-up-btn:hover {
    background-color: #187bcd;
}

.nav-items {
    display: flex;
    list-style: none;
}

.nav-items li {
    position: relative;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-items li:hover {
    background-color: rgba(87, 242, 253, 0.3);
}

.active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgb(25, 201, 255);
    display: none;
}

.nav-items li.active .active-indicator {
    display: block;
}

/* Search container styles in nav bar*/
.search-container {
    margin-right: 50px;
    display: flex;
    margin-top: 100px;
    gap: 20px;
    position: relative;
}

.policy-link a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.policy-link a:hover {
    text-decoration: underline;
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
    color: #333;
    transition: transform 0.2s;
}

.search-icon:hover {
    transform: scale(1.1);
}

/* Expanded search styles */
.search-expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.search-content {
    width: 80%;
    max-width: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.search-close {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.search-close:hover {
    color: #333;
}

/* Blur effect when search is active */
body.search-active {
    overflow: hidden;
}

body.search-active .nav-bar,
body.search-active .content,
body.search-active .footer {
    filter: blur(3px);
}



/* PAGE CONTENT */
.content {
    min-height: calc(100vh - 180px); /* Adjust based on your header/footer height */
    padding: 20px;
}

/*the image in PAGE CONTENT and the text*/
.hero-image {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* The actual image with dark overlay */
.hero-image img {
    width: 100%;
    height: auto;
    margin-top: 0px;
    margin-left: 0px;

    display: block;
    filter: brightness(0.9); /* This adds the slight darkening effect */
}

/* Text overlay container */
.image-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
    max-width: 60%;
    z-index: 2; /* Ensures text stays above everything */
}

/* Big text style */
.big-text {
    font-size: 3rem;
    font-family: Arial;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Small text style */
.small-text {
    font-size: 1.8rem;
    font-family: Arial;
    margin-top: 0;
}
/* Footer */
.footer {
    background-color: #87CEEB;
    height: 500px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links-container {
    position: absolute;
    right: 100px;
    display: flex;
    gap: 30px; /* Space between columns */
    align-items: center;
    height: 100%;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between links */
    margin-right: 150px;
}
.footer-links-column a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap; /* Prevent text wrapping */
}

.footer-links-column a:hover {
    text-decoration: underline;
}

.logoinbottom{
    width: 250px;
    height: 250px;
    align-items: center;
    margin-left: 50px;
}

.footer-address {
    position: absolute;
    margin-left: 400px;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 30px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
}

.social-follow{
    margin-left: 1310px;
    margin-top: -90px;
    position: absolute;
    font-size: 16px;
    font-style: bold;
}

/* TEAM PAGE DESIGN* /

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Team Page Specific Styles */
.team-section {
    padding: 60px 20px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #333;
}

.players-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.player-card {
    width: 300px;
    height: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.player-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.player-role {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.view-profile {
    text-align: right;
}

.view-profile a {
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-profile a:hover {
    text-decoration: underline;
}

/* Footer - Same as before */
.footer {
    background-color: #87CEEB;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 120px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    position: absolute;
    left: 20px;
}

.footer-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links-container {
    position: absolute;
    right: 100px;
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-column a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.footer-links-column a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #333;
    font-size: 24px;
}
