/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.5;
}

/* ============================================================
   TOP BAR — back button + language switcher on same row
   ============================================================ */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    border: 2px solid black;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.back-btn:hover {
    background-color: black;
    color: white;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.language-switch {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 3px 5px;
}

.lang-divider {
    color: #bbb;
    font-size: 0.75rem;
    user-select: none;
    line-height: 1;
    padding: 0 1px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #888;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    font-family: Arial, sans-serif;
}

.lang-btn:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.06);
}

.lang-btn.active {
    background: #222;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lang-btn.active:hover {
    background: #444;
}

.flag-icon {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .lang-btn span { display: none; }
    .lang-btn      { padding: 4px 5px; }
    .lang-divider  { display: none; }
    .flag-icon     { width: 22px; height: 16px; }
}

/* Gallery Section */
.gallery-section {
    padding: 30px 20px;
    text-align: center;
}

.gallery-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.gallery-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid        { grid-template-columns: repeat(1, 1fr); }
    .gallery-title       { font-size: 1.8rem; }
    .gallery-description { font-size: 0.9rem; }
}

/* Social Media CTA */
.social-media-cta {
    background: white;
    color: black;
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-media-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.facebook  { background-color: #3b5998; }
.cta-button.instagram { background-color: #e4405f; }
.cta-button.twitter   { background-color: #1da1f2; }

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-title { font-size: 1.8rem; }
    .cta-text  { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-button  { width: 100%; max-width: 250px; justify-content: center; }
}