eneral Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.gray-bg {
    background-color: #e9ecef;
    border-radius: 8px;
}

/* Header & Navigation */
header {
    background-color: #1b365d;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #f1c40f;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-switch button.active, .lang-switch button:hover {
    background: #f1c40f;
    color: #1b365d;
    border-color: #f1c40f;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(27, 54, 93, 0.7), rgba(27, 54, 93, 0.7)), url('hero-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
}

/* Section Titles */
h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1b365d;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #f1c40f;
}

/* Cards Grid (Sightseeing) */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.card h3 {
    color: #1b365d;
    margin-bottom: 0.8rem;
}

/* Dictionary Table (Barbar) */
.dictionary-table-wrapper {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.dictionary-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dictionary-table th, .dictionary-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.dictionary-table th {
    background-color: #1b365d;
    color: white;
    font-weight: 600;
}

.dictionary-table tr:hover {
    background-color: #f5f5f5;
}

.dialect-word {
    font-weight: bold;
    color: #d9534f;
}

/* Footer */
footer {
    background: #1b365d;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
}

.company-credits {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #f1c40f;
    letter-spacing: 0.5px;
}

/* Gallery Styles - 4 ???? ???? ?????? + ???????? */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding: 10px;
}

.photo-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.photo-gallery img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive (Mobile view) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    } 
/* Dark Mode ???? */
body.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

body.dark-mode .card, 
body.dark-mode section, 
body.dark-mode div[style*="background: white"],
body.dark-mode div[style*="background-color: white"] {
    background-color: #1e1e1e !important;
    color: #e0e0e0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}

body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode strong {
    color: #90caf9 !important;
}

body.dark-mode nav {
    background-color: #0d1b2a !important;
}

/* Dark Mode ?????? ??? */
.dark-mode-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.dark-mode-btn:hover {
    background: white;
    color: #1b365d;
}/* G