/* Variables */
:root {
    --primary-color: #0077cc;
    --secondary-color: #4c4c4c;
    --text-color: #2b2b2b;
    --header-bg-color: rgba(128, 128, 128, 0.6);
    --hero-overlay-color: rgba(0, 0, 0, 0.6);
    --white-color: #ffffff;
    --border-color: #e0e0e0;
    --hover-color: #005fa3;
    --hero-shadow: rgba(0, 0, 0, 0.7);
    --font-size-h2: 3rem;
    --font-size-h2-mobile: 2rem;
    --font-size-p: 1.2rem;
    --font-size-p-mobile: 1rem;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    background-color: #f8f8f8;
    line-height: 1.6;
}
/* Apply Raleway to headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700; /* Bold for headers */
}

/* Apply Raleway to other elements */
p, a, button, input, textarea {
    font-family: 'Raleway', sans-serif;
    font-weight: 400; /* Regular weight for body text */
}

/* Header Styling */
#main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--header-bg-color);
    color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 3;
    transition: background-color 0.3s ease;
}

/* Centered Logo Styling */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--white-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right-aligned Header Items */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Login button in the header */
.btn-login {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: var(--hover-color);
}
/* Adjust side menu login button styling */
.side-menu a.btn-login {
    padding: 0.5rem 1rem;
    color: var(--white-color);
    background-color: var(--secondary-color);
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
    display: block;
}

.side-menu a.btn-login:hover {
    background-color: #333;
}

/* Menu Icon */
.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white-color);
    z-index: 5;
    margin-left: 1rem;
}

/* Scrolled Header */
.scrolled {
    background-color: #808080;
}

/* Side Menu Styling */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.95);
    padding-top: 2rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.2s ease-in-out;
    z-index: 4;
}

.side-menu .menu-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #333;
}

.side-menu ul {
    list-style: none;
    padding: 3rem 1rem 0 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-menu a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.side-menu a:hover {
    background-color: var(--secondary-color);
}

.side-menu.open {
    left: 0;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
}

.language-switcher a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero-banner {
    margin-top: 100px;
    padding: 50px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.hero-content h2 {
    font-size: 2.5em;
    color: #333;
}

.hero-content p {
    font-size: 1.2em;
    color: #666;
}

/* Swiper Styling */
.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.slide-content {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    border-radius: 0 0 15px 15px;
    text-align: center;
    font-size: 0.9rem; /* Adjust font size */
    position: absolute;
    bottom: 0;
}

.swiper-slide h2 {
    font-size: 1.2rem;
    margin: 0;
}

.swiper-slide p {
    font-size: 0.9rem;
    margin-top: 2px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #ffffff;
}


/* Footer */
footer {
    background-color: #4c4c4c;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem 0;
}
