/* --- Global Variables & Reset --- */
:root {
    --primary: #b71c1c; 
    --secondary: #f57f17; 
    --bg-light: #fbf8f1; 
    --text-dark: #333333;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, .logo-text { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary); margin-bottom: 3rem; }

/* --- Navbar & Dropdown Menus --- */
.navbar { background-color: var(--text-light); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 120px; }
.logo { text-decoration: none; display: flex; align-items: center; }
.logo img { max-height: 180px; width: auto; margin-right: 10px; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

.nav-links { display: flex; list-style: none; }
.nav-links li { position: relative; margin-left: 1.5rem; padding: 28px 0; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }

/* First Level Dropdown */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--text-light); min-width: 200px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); list-style: none; padding: 0; }
.dropdown:hover > .dropdown-menu { display: block; }
.dropdown-menu li { margin: 0; padding: 0; border-bottom: 1px solid #eee; }
.dropdown-menu a { display: block; padding: 12px 20px; font-size: 0.95rem; }
.dropdown-menu a:hover { background-color: var(--bg-light); color: var(--primary); }

/* Second Level Submenu (Art & Culture) */
.dropdown-submenu { position: relative; }
.dropdown-submenu .submenu { top: 0; left: 100%; }
.dropdown-submenu:hover > .submenu { display: block; }

/* Mobile Hamburger */
.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--text-dark); margin: 5px; transition: var(--transition); }

/* --- Layout Sections (Hero, Content) --- */
.hero { 
    height: 300px; /* Reduces the massive full screen down to a thin strip */
    display: flex; 
    flex-direction: column; /* Stacks the heading and slogan perfectly */
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('background.png') center/cover; 
    color: var(--text-light); 
    padding-top: 120px; /* Pushes the text safely down below your fixed menu */
}
.hero h1 { 
    font-size: 2.8rem; /* Slightly smaller to fit the new thin strip */
    margin-bottom: 0.5rem; 
    color: #007bff; 
}
.hero p { 
    font-size: 1.1rem; /* Controls the size of your slogan */
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 20px;
    color: var(--text-light); 
}
.main-content { padding: 100px 0; min-height: 60vh; }
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.card { background-color: var(--text-light); padding: 20px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.card img, .card iframe, .card video { width: 100%; border-radius: 8px; margin-bottom: 15px; }

/* --- Footer --- */
.footer { background-color: #212121; color: var(--text-light); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--secondary); margin-bottom: 20px; font-size: 1.5rem; }
.footer-col p { margin-bottom: 10px; color: #cccccc; font-size: 0.95rem; }
.footer-col strong { color: var(--text-light); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #888; font-size: 0.9rem; }

/* --- Contact Form Styles --- */
.contact-form { background-color: var(--text-light); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-dark); }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); transition: border 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.btn-submit { background-color: var(--secondary); color: var(--text-dark); border: none; padding: 12px 30px; font-size: 1rem; font-weight: 600; border-radius: 5px; cursor: pointer; transition: var(--transition); width: 100%; }
.btn-submit:hover { background-color: var(--primary); color: var(--text-light); }

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 768px) {
    .nav-links { position: absolute; right: 0; top: 80px; background-color: var(--text-light); display: none; flex-direction: column; width: 100%; text-align: center; box-shadow: 0 4px 5px rgba(0,0,0,0.1); }
    .nav-links.nav-active { display: flex; }
    .nav-links li { padding: 15px 0; margin: 0; }
    .dropdown-menu { position: relative; box-shadow: none; background-color: #fafafa; }
    .dropdown-submenu .submenu { left: 0; top: 100%; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
}