/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #AA7C11;
    --dark: #1A1A1A;
    --light: #F9F9F9;
    --white: #FFFFFF;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* Header & Navbar */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    border-radius: 50%;
}

.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gold);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.btn-login {
    text-decoration: none;
    background: linear-gradient(45deg, var(--dark-gold), var(--gold));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-login:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1920') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
    line-height: 2;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: #ccc;
    line-height: 1.8;
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    color: #888;
}