/* Global Styles */
body {
    font-family: 'Lora', serif;
    color: #353839;
    background-color: #f5f5f5;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Typography */
h1, h2 {
    font-family: 'Yeseva One', serif;
    color: white; /* Changed for hero section */
    letter-spacing: 2px;
}

h1.display-3 {
    font-size: 3.5rem;
}

p.lead {
    font-size: 1.25rem;
    color: white; /* Changed for hero section */
}

/* Header Styles */
header {
    background-color: #f8f9fa; /* Light background */
    color: #7CB4C4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 60px;
    max-width: auto; /* Ensure the logo is responsive */
}

nav .nav-link {
    color: #7CB4C4; /* Main color */
    font-weight: 700;
    font-size: 1.1rem;
}

nav .nav-link:hover {
    color: #353839;
}

.nav-link.active {
    background-color: #7CB4C4;
    border-radius: 0.25rem;
    color: #fff !important;
}

/* Button styles for Login and Register */
.nav .btn {
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Login button (outline) */
.nav .login-btn {
    color: #7CB4C4;
    border-color: #7CB4C4;
}

.nav .login-btn:hover {
    background-color: #7CB4C4;
    color: white;
}

/* Register button (filled) */
.nav .register-btn {
    background-color: #7CB4C4;
    color: white;
}

.nav .register-btn:hover {
    background-color: #6aa1b3;
    color: white;
}

.nav .register-btn:focus {
    outline: none;
    box-shadow: none; /* Remove any default box-shadow that may create the blue line */
}

/* Mobile Menu Button */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #7CB4C4;
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
}

/* Section Styles */
section {
    padding: 60px 0;
}

section.bg-light {
    background-color: #e6f7f9;
}

section#intro {
    background-color: #7CB4C4; /* Main color */
    color: white;
}

section img.img-fluid {
    max-width: 100%;
    height: auto;
}

section#team .col-md-4 {
    margin-bottom: 30px;
}

section#team img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Styles for the cities in the contact section */
#contact .row .col-md-2 p {
    font-size: 1.2rem;  /* Increase font size for the cities */
    font-weight: bold;  /* Make the text bold */
    margin-top: 20px;   /* Add top margin for spacing */
    margin-bottom: 20px; /* Add bottom margin for spacing */
}

#contact .row .col-md-2 p:hover {
    color: #7CB4C4;  /* Change color on hover to match the main theme */
    transition: color 0.3s ease;  /* Smooth transition for hover effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1.display-3 {
        font-size: 2.5rem;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .navbar-toggler {
        display: block;
    }

    nav ul {
        display: none;
    }
	
    header .logo img {
        height: 50px; /* Smaller height for mobile */
        max-width: auto; /* Keeps aspect ratio */
    }
	
    .nav .login-btn, .nav .register-btn {
        width: 100%; /* Buttons will be full-width on mobile */
        margin-bottom: 10px;
    }
	
    .row img {
        margin-bottom: 15px; /* Adds space between the images vertically on smaller screens */
    }
    
    .row > div {
        margin-bottom: 15px; /* Adds space around the image containers */
    }
}

.card-img-unified {
    height: 220px;
    object-fit: cover;
}