/* Universal Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --bg-dark: #ffffff;
    --accent-gold: #c39b4b;
    --text-white: #222222;
    --text-light: #666666;
    --card-bg: #f5f5f5;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Navigation Bar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Navbar Logo */
.nav-logo {
    height: 50px;
    width: auto;
    mix-blend-mode: normal;
    filter: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-light);
        font-size: 1.1rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }

/* Hero Section Styling */
.hero-section {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    text-align: center;
 /*   background: linear-gradient( rgba(255,255,255,0.95), rgba(247,247,247,0.95) ), repeating-linear-gradient( 45deg, transparent, transparent 40px, rgba(195,155,75,0.03) 40px, rgba(195,155,75,0.03) 80px );*/
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

/* Main Hero Logo */
.hero-logo {
    max-width: 280px;
    margin-bottom: 20px;
    mix-blend-mode: normal;
    filter: none;
    animation: fadeIn 1.5s ease;
}

h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #222222;
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-gold);
    color: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background-color: #a8843c;
        border-color: #a8843c;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(195, 155, 75, 0.25);
        transform: translateY(-2px);
    }

/* Simple Entrance Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*PIECES START*/
.piece-image {
    width: 25%;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.chess-symbol {
    display: inline-block;
    font-family: "Times New Roman", serif;
    font-size: 90px;
    line-height: 1;
    margin-right: 15px;
    vertical-align: middle;
    color: #111;
}

.piece-image strong {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}
/*PIECES END*/

/*LANGUAGE SWITCH START*/
.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.lang-label {
    color: #555;
}

.switch {
    position: relative;
    width: 42px;
    height: 22px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    inset: 0;
    background-color: #ccc;
    border-radius: 22px;
    cursor: pointer;
    transition: 0.2s;
}

    .slider::before {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        left: 2px;
        top: 2px;
        background: white;
        border-radius: 50%;
        transition: 0.2s;
    }

input:checked + .slider {
    background-color: #169b62;
}

    input:checked + .slider::before {
        transform: translateX(20px);
    }
/*LANGUAGE SWITCH END*/