/* --- Google Fonts & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
}

/* --- Reusable Components --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    color: #d4af37; /* Historic Egyptian Gold */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #d4af37;
    color: #121212;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #d4af37;
    color: #d4af37;
}

.btn-secondary {
    background-color: transparent;
    border-color: #f5f5f5;
    color: #f5f5f5;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #121212;
}

.w-100 {
    width: 100%;
}

/* --- Header / Navbar --- */
header {
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    /* Egyptian monument background graphic placeholder */
    background: url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-content h1 span {
    color: #d4af37;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #ccc;
}

.hero-buttons .btn {
    margin: 0.5rem;
}

/* --- Highlights Section --- */
.services-section {
    padding: 6rem 0;
    background-color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #121212;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.service-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.highlight-meta {
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p:not(.highlight-meta) {
    color: #aaa;
    font-size: 0.95rem;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    height: 300px;
    border: 1px solid #222;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 6rem 0;
    background-color: #1a1a1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: #121212;
    padding: 2rem;
    border-top: 3px solid #d4af37;
}

.stars {
    color: #d4af37;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-card h4 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 0.9rem;
}

/* --- Contact & Maps Section --- */
.contact-section {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.contact-form-wrapper h3, .contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper h3 {
    color: #d4af37;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    border-color: #d4af37;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-info i {
    color: #d4af37;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    margin-top: 1.5rem;
    border: 1px solid #333;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* --- Footer --- */
footer {
    background-color: #0d0d0d;
    padding: 2rem 0;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    color: #777;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.socials a {
    color: #777;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #d4af37;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 65px;
        left: -100%;
        flex-direction: column;
        background-color: #121212;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid #222;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

