/* --- Variables --- */
:root {
    --color-saffron: #C46210;   /* Saffron / Spice Orange */
    --color-stone: #8D7B68;     /* Mardin Stone */
    --color-dark: #3E362E;      /* Dark Coffee */
    --color-bg: #F4EBD0;        /* Papyrus / Beige */
    --color-white: #ffffff;
    
    --font-display: 'Cinzel Decorative', cursive;
    --font-body: 'Lora', serif;
    
    --border-pattern: 10px solid var(--color-stone);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.8;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png'); /* Texture */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; filter: sepia(20%); transition: 0.5s; }
img:hover { filter: sepia(0%); }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* --- Motif Bar --- */
.motif-bar { height: 10px; background-color: var(--color-saffron); background-image: repeating-linear-gradient(45deg, var(--color-saffron) 0, var(--color-saffron) 10px, var(--color-dark) 10px, var(--color-dark) 20px); }

/* --- Header --- */
.levant-header { padding: 30px 0; border-bottom: 1px solid var(--color-stone); background: rgba(244, 235, 208, 0.95); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-display); font-size: 2rem; color: var(--color-dark); letter-spacing: 2px; }
.saffron-text { color: var(--color-saffron); }
.symbol { font-size: 1.5rem; margin-left: 10px; }

.orient-nav ul { display: flex; gap: 30px; align-items: center; }
.orient-nav a { font-weight: 600; font-size: 1rem; color: var(--color-dark); text-transform: uppercase; letter-spacing: 1px; }
.orient-nav a:hover, .orient-nav a.active { color: var(--color-saffron); border-bottom: 2px solid var(--color-saffron); }

.btn-saffron { background-color: var(--color-saffron); color: var(--color-white) !important; padding: 10px 25px; border-radius: 0; font-family: var(--font-display); font-weight: bold; border: 1px solid var(--color-saffron); }
.btn-saffron:hover { background-color: transparent; color: var(--color-saffron) !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background-color: var(--color-dark); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-dark); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    transition: 0.4s ease; border-left: 5px solid var(--color-saffron);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-bg); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-bg); border-bottom: 1px solid #555; padding-bottom: 10px; }

/* --- Hero --- */
.hero-levant {
    position: relative; height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-tint { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(62, 54, 46, 0.6); z-index: 1; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 800px; padding: 40px; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.4); backdrop-filter: blur(2px); }
.ornament-top { display: block; color: var(--color-saffron); font-size: 1.5rem; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-display); font-size: 3.5rem; color: var(--color-bg); margin-bottom: 20px; line-height: 1.2; text-shadow: 2px 2px 10px #000; }
.hero-content p { color: #f0f0f0; font-size: 1.3rem; margin-bottom: 40px; font-style: italic; }
.btn-outline-gold { border: 2px solid var(--color-saffron); color: var(--color-saffron); padding: 15px 40px; font-weight: bold; font-family: var(--font-display); letter-spacing: 2px; }
.btn-outline-gold:hover { background-color: var(--color-saffron); color: var(--color-white); }

/* --- City Grid --- */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-dark); margin-bottom: 15px; }
.divider-rug { height: 5px; width: 100px; background-color: var(--color-saffron); margin: 0 auto; border-radius: 2px; }
.divider-rug.small { width: 50px; margin: 20px 0; }

.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.city-card { background-color: var(--color-white); border: 1px solid #dcdcdc; padding: 15px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.city-card:hover { transform: translateY(-5px); border-color: var(--color-saffron); }
.img-frame { height: 250px; overflow: hidden; margin-bottom: 15px; border-bottom: 1px solid #eee; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.card-text { text-align: center; }
.card-text h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-saffron); margin-bottom: 10px; }
.card-text p { font-size: 0.95rem; color: #666; margin-bottom: 20px; }
.card-text a { font-weight: bold; color: var(--color-dark); border-bottom: 1px solid var(--color-saffron); }

/* --- Quote --- */
.mystic-quote { background-color: var(--color-dark); color: var(--color-bg); padding: 80px 0; text-align: center; margin-top: 50px; background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); }
.mystic-quote blockquote { font-family: var(--font-display); font-size: 2rem; line-height: 1.4; border-left: 5px solid var(--color-saffron); border-right: 5px solid var(--color-saffron); padding: 0 40px; display: inline-block; }

/* --- Food (About) --- */
.page-title { text-align: center; margin-bottom: 60px; }
.page-title h1 { font-family: var(--font-display); font-size: 3rem; color: var(--color-saffron); text-shadow: 1px 1px 0px var(--color-dark); }

.food-grid { display: flex; flex-direction: column; gap: 60px; }
.food-item { display: flex; align-items: center; gap: 40px; }
.food-item.reverse { flex-direction: row-reverse; }
.f-img { flex: 1; border: 10px solid var(--color-white); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.f-desc { flex: 1; padding: 20px; background-color: var(--color-white); border-left: 5px solid var(--color-saffron); }
.f-desc h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 15px; color: var(--color-dark); }

/* --- Stories (Testimonials) --- */
.story-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.story-tile { background-color: var(--color-white); padding: 40px 30px; text-align: center; border: 1px solid #e0e0e0; transition: 0.3s; }
.story-tile.alt { background-color: var(--color-dark); color: var(--color-bg); border: none; }
.story-tile.alt p { color: #ddd; }
.story-tile:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.tile-icon { font-size: 2rem; margin-bottom: 20px; color: var(--color-saffron); }
.story-tile h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 15px; }
.story-tile p { font-style: italic; margin-bottom: 20px; font-size: 1rem; }
.writer { font-weight: bold; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* --- Contact Form --- */
.contact-box { background-color: var(--color-white); max-width: 800px; margin: 0 auto; display: flex; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.contact-ornament { width: 100px; background-color: var(--color-saffron); background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 20px); }
.contact-body { padding: 50px; flex: 1; }
.contact-body h2 { font-family: var(--font-display); color: var(--color-dark); margin-bottom: 10px; }

.antique-form .form-row { margin-bottom: 20px; }
.antique-form label { display: block; font-weight: bold; margin-bottom: 5px; font-family: var(--font-display); font-size: 0.9rem; }
.antique-form input, .antique-form select, .antique-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background-color: #fdfdfd; font-family: var(--font-body); border-radius: 0; }
.antique-form input:focus { border-color: var(--color-saffron); outline: none; background-color: #fff; }
.btn-submit { width: 100%; background-color: var(--color-dark); color: var(--color-saffron); padding: 15px; border: none; font-family: var(--font-display); font-weight: bold; font-size: 1.2rem; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.btn-submit:hover { background-color: var(--color-saffron); color: var(--color-dark); }

/* --- Legal --- */
.heritage-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border: 1px solid #dcdcdc; }
.heritage-doc h1 { font-family: var(--font-display); text-align: center; color: var(--color-dark); }
.heritage-doc h3 { font-family: var(--font-display); color: var(--color-saffron); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.levant-footer { background-color: var(--color-dark); color: var(--color-bg); padding: 60px 0; margin-top: auto; text-align: center; border-top: 5px solid var(--color-saffron); }
.f-brand { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 20px; color: var(--color-saffron); }
.f-links a { color: #ccc; margin: 0 15px; font-family: var(--font-body); }
.f-links a:hover { color: var(--color-saffron); }
.copyright { margin-top: 40px; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 992px) {
    .orient-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .food-item, .food-item.reverse { flex-direction: column; }
    .story-tiles { grid-template-columns: 1fr; }
    .contact-box { flex-direction: column; }
    .contact-ornament { width: 100%; height: 20px; }
}