/* Google Fonts & Basic Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #2c3e50; /* Deep Blue from Logo */
    color: #ecf0f1;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hidden Menu & Navigation */
.menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #e67e22; /* Orange from Logo */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hidden-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.hidden-menu-content {
    text-align: center;
    margin-top: 30px;
}

.hidden-menu a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 28px;
    color: #ecf0f1;
    display: block;
    transition: 0.3s;
    font-family: 'Playfair Display', serif;
}

.hidden-menu a:hover {
    color: #e67e22;
}

.hidden-menu .close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1506377295352-e3154d43ea9e?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content .logo {
    max-width: 300px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.hero-content .slogan {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #f1c40f; /* Sun Yellow from Logo */
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 60px 20px;
}

.mission-vision-section .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.mission-block, .vision-block {
    flex: 1;
    text-align: center;
}

.mission-vision-section h2 {
    font-family: 'Playfair Display', serif;
    color: #e67e22;
}

/* Promotions Section */
.promo-section {
    padding: 60px 20px;
}

.promo-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

#promo-offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Styling for the Offer Cards (to be loaded) */
.promo-card {
    background-color: #34495e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-content {
    padding: 25px;
}

.promo-content h3 {
    font-family: 'Playfair Display', serif;
    color: #f1c40f;
    margin-top: 0;
}

.promo-content .btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background-color: #203040;
    text-align: center;
    padding: 20px;
}

/* Floating Language Button */
.language-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f1c40f; /* Sun Yellow */
    color: #2c3e50; /* Deep Blue */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.2s ease;
}

.language-toggle-btn:hover {
    transform: scale(1.1);
}