* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c3e50;
    --secondary: #628e9c;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #7f8c8d;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin:  0 auto;
    padding: 0 20px;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Header Styles */
header {
    background-color: rgba(55, 99, 115, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 1.5s, box-shadow 0.3s;
    gap: 15px;
}


/*--Language-Switcher--*/

    .lang-switcher {
        background: none;
        color: none;

        width: auto;
        height: auto;
    }

    .lang-switcher { 
    position: relative;
    display: inline-block; 
    }

    /*button*/
    .current-lang {
    padding: 5px;
    color: #628e9c;
    background-color: transparent;

    border: 1px solid #628e9c;
    border-radius: 8px;
    cursor: pointer;
    }
    
    .lang-options {
    display: none;
    position: absolute;
    list-style: none;
    left: -30px;
    }

    .lang-options li {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;            /* Align image and text horizontally */
    align-items: center;      /* Center vertically */
    gap: 5px;                 /* Space between flag and text */
    line-height: 1;           /* Remove extra line spacing */
    margin: 0;                /* Reset default margin */

    color: #2c3e50;
    background-color: #3a506b79;
    border-radius: 8px;
    }
    .lang-options li:hover { 
    background: #628e9c;
    color: white;
    }
    .lang-switcher:hover .lang-options { display: block; }


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

ul li ul.dropdown-options {
    list-style-type: none;
    width: 210px;
    background: rgba(224, 224, 224, 0.72) ;
    color: var(--primary);
    position: absolute;
    z-index: 999;
    display: none;
    text-align: flexible;
}

ul li a:hover {
    background:  none;
}

ul li:hover ul.dropdown-options{
    display: block;
    background:  rgba(235, 235, 235 0.8);
}

.btn-dropdown-options {
    background: none;
    color: var(--primary);
    border: none;
}

.logo  {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.logo-button {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}