/* CSS Variable Definitions */
:root {
    --primary: #116797; /* Hotel blue */
    --primary-dark: #0c4d72;
    --text-dark: #222222;
    --text-light: #777777;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography styles */
h1, h2, h3, h4, .logo, .footer-logo {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 16px 35px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
}

.btn-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 5px;
    display: inline-block;
}
.btn-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ----------------- Topbar ----------------- */
.topbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid #EBEBEB;
    font-size: 11px;
    letter-spacing: 1px;
    color: #999;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.topbar-left span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topbar-left span i {
    color: var(--primary);
    font-size: 14px;
}

.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-selector:hover {
    color: var(--primary);
}

.btn-login {
    background-color: #116797; /* Blue solid block */
    color: white;
    padding: 0 35px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-login:hover {
    background-color: #0c4d72;
}

.user-avatar {
    background-color: #116797;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    margin-left: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-right: 15px;
}

.user-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 15px;
    background: var(--bg-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    min-width: 150px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    margin-top: -5px;
}

.user-menu-wrapper:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown .user-name {
    display: block;
    padding: 5px 20px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.user-dropdown hr {
    border: 0;
    border-top: 1px solid #EBEBEB;
    margin: 5px 0;
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
}

.user-dropdown .dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.user-dropdown .dropdown-item i {
    font-size: 16px;
}

/* ----------------- Header ----------------- */
.header {
    background-color: var(--bg-white);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 34px;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
}

.nav a:hover, .nav a.active {
    color: var(--primary);
}

/* ----------------- Page Header Common ----------------- */
.page-header {
    background-color: var(--bg-light);
    padding: 40px 0 35px;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
}

.page-title {
    font-size: 32px;
    margin-bottom: 6px;
}

.breadcrumb {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #AAA;
}

.breadcrumb a {
    color: var(--primary);
}
.breadcrumb span {
    margin: 0 10px;
}

/* ----------------- Footer ----------------- */
.footer {
    background-color: var(--bg-white);
    padding: 50px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-top p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.footer-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font-body);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #777;
}

.footer-col ul li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 16px;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 13px;
}
.newsletter-form input:focus {
    outline: none;
    box-shadow: inset 0 0 0 1px var(--primary);
}

.newsletter-form button {
    background: #116797;
    color: white;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #EBEBEB;
    font-size: 12px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 30px;
}
.footer-links a {
    color: #999;
}
.footer-links a:hover {
    color: var(--primary);
}

/* Responsive adjustments */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
}

@media (max-width: 992px) {
    .hero-inner, .about-inner, .footer-top {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
        gap: 10px;
    }

    .topbar-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .topbar-left span {
        margin-right: 0;
    }

    .topbar-right {
        width: 100%;
        justify-content: center;
        padding-top: 5px;
        border-top: 1px solid #EBEBEB;
    }

    .header-inner {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #EBEBEB;
        display: block;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .page-title {
        font-size: 36px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
