/* ========================================
   FONT DECLARATIONS
   ======================================== */

/* Arabic Fonts - GESS Two */
@font-face {
    font-family: 'GESS Two';
    src: url('../fonts/arabic/GESSTwoLight-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GESS Two';
    src: url('../fonts/arabic/GESSTwoMedium-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GESS Two';
    src: url('../fonts/arabic/GESSTwoBold-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* English Fonts - Jakob Semi Condensed */
@font-face {
    font-family: 'Jakob Semi Condensed';
    src: url('../fonts/english/Jakob-Semi-Condensed.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* English Fonts - Lexend Deca Variable */
@font-face {
    font-family: 'Lexend Deca';
    src: url('../fonts/english/LexendDeca-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   DEBONED BRAND COLORS
   ======================================== */
:root {
    /* Font Families */
    --font-arabic: 'GESS Two', 'Segoe UI', Tahoma, sans-serif;
    --font-heading: 'Jakob Semi Condensed', 'Playfair Display', serif;
    --font-body: 'Lexend Deca', 'Inter', sans-serif;

    /* Pale Mint */
    --color-pale-mint: #9fd0b8;
    --pantone-565c: #9fd0b8;
    
    /* Teal Green */
    --color-teal-green: #2b7265;
    --pantone-7717c: #2b7265;
    
    /* Coral Orange */
    --color-coral-orange: #f47d54;
    --pantone-2023c: #f47d54;
    
    /* Brick Red */
    --color-brick-red: #9d2d21;
    --pantone-201c: #9d2d21;
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-off-white: #F8F8F8;
    --color-light-grey: #E5E5E5;
    --color-dark-grey: #565C5C;
    --color-black: #000000;
}



/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark-grey);
    background-color: #f0f0f0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Arabic text support */
[lang="ar"], 
.arabic-text,
html[dir="rtl"] body {
    font-family: var(--font-arabic);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background-color: var(--color-off-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-light-grey);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-deboned {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-black);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--color-dark-grey);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-teal-green);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    padding: 5rem 0 3rem 0;
    background-color: #f0f0f0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #f47d54;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: #9d2d21;
    margin-bottom: 2rem;
}


/* Hero Image Wrapper - Overlapping Section */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
    margin-bottom: -200px;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
 background-color:#f0f0f0;
  border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
        border-radius: 30px;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    padding: 250px 0 5rem 0;
    background-color: var(--color-white);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: #2b7265;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

/* Cities Container */
.cities-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.city-badge {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-dark-grey);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
}

.city-badge:hover {
    background-color: var(--color-teal-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gcc-map {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.map-region {
    transition: all 0.3s ease;
    stroke: var(--color-white);
    stroke-width: 2;
}

.active-region {
    fill: var(--color-brick-red);
}

.map-region:not(.active-region) {
    fill: #f47d54;
}

.map-region:hover {
    opacity: 1;
    filter: brightness(1.1);
}

.location-marker {
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-marker:hover {
    r: 6;
    fill: var(--color-coral-orange);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 5rem 0;
    background-color: var(--color-off-white);
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.site-footer {
    background-color: #f0f0f0;
    padding: 6rem 1rem 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Inner container */
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Decorative diagonal accents */
.footer-accent {
    position: absolute;
    width: 80px;
    height: 600px;
    background-color: var(--color-teal-green);
    opacity: 0.9;
}

.footer-accent.left {
    top: 0;
    left: -40px;
    transform: rotate(-25deg);
}

.footer-accent.right {
    top: 0;
    right: -30px;
    transform: rotate(45deg);
}

/* Newsletter */
.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 2rem;
}

/* Form */
.newsletter-form {
    max-width: 420px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.newsletter-form input {
    border: none;
    border-bottom: 1px solid var(--color-dark-grey);
    background: transparent;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    outline: none;
    text-align: center;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: #9a9a9a;
}

/* Subscribe button */
.newsletter-form button {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-black);
    cursor: pointer;
    transition: letter-spacing 0.3s ease;
}

.newsletter-form button:hover {
    letter-spacing: 0.08em;
}

/* Social links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
   
}

.footer-social a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    color: #9d2d21;
    transition: opacity 0.3s ease;
}

.footer-social i {
    color: #9d2d21;
}


.footer-social a:hover {
    opacity: 0.6;
}

/* Bottom text */
.footer-bottom {
    font-size: 0.7rem;
    color: #2b7265;
}

.footer-links a {
    font-family: var(--font-heading);
    text-decoration: none;
    font-size: 1.5rem;
    color: #2b7265;
    margin: 0 6px; /* replaces &nbsp; spacing */
}

.footer-links a:hover {
    text-decoration: none; /* optional */
    color: #9d2d21
}
/* ========================================
   RESPONSIVE - FOOTER
   ======================================== */

@media (max-width: 768px) {
    .footer-social {
        gap: 1.8rem;
    }

    .newsletter-form {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 4rem 1rem 2rem;
    }

    .footer-accent {
        width: 100px;
    }
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-section {
        padding: 3rem 0 2rem 0;
    }
    
    .hero-image-wrapper {
        margin-bottom: -150px;
    }
    
    .map-section {
        padding: 180px 0 3rem 0;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .cities-container {
        gap: 1rem;
    }
    
    .city-badge {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .logo-deboned {
        font-size: 1.2rem;
    }
    
    .hero-image-wrapper {
        margin-bottom: -100px;
    }
    
    .map-section {
        padding: 130px 0 3rem 0;
    }
    
    .cities-container {
        flex-direction: column;
        align-items: center;
    }
    
    .city-badge {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-image-container,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.city-badge {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.city-badge:nth-child(1) { animation-delay: 0.1s; }
.city-badge:nth-child(2) { animation-delay: 0.2s; }
.city-badge:nth-child(3) { animation-delay: 0.3s; }
.city-badge:nth-child(4) { animation-delay: 0.4s; }
.city-badge:nth-child(5) { animation-delay: 0.5s; }
.city-badge:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-pale-mint { background-color: var(--color-pale-mint); }
.bg-teal-green { background-color: var(--color-teal-green); }
.bg-coral-orange { background-color: var(--color-coral-orange); }
.bg-brick-red { background-color: var(--color-brick-red); }

.text-pale-mint { color: var(--color-pale-mint); }
.text-teal-green { color: var(--color-teal-green); }
.text-coral-orange { color: var(--color-coral-orange); }
.text-brick-red { color: var(--color-brick-red); }

/* Font utility classes */
.font-arabic { font-family: var(--font-arabic); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }


/* ========================================
   OUR STORY SECTION in WELCOME PAGE
   ======================================== */
.our-story-section {
    background-color: var(--color-white);
}

/* Main centered title */
.our-story-main-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.05em;
}


/* Image */
.our-story-image-wrapper {
    overflow: hidden;
}

.our-story-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 30px;
}

.our-story-image-wrapper:hover .our-story-image {
    transform: scale(1.03);
}

/* Text Content */
.our-story-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.our-story-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2b7265;
    max-width: 420px;
    margin-bottom: 2rem;
}

/* Read More link */
.our-story-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2b7265;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.our-story-link:hover {
    color: #9d2d21;
}

.our-story-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1.5px;
    background-color: #f47d54;
    transition: width 0.3s ease;
}

.our-story-link:hover::after {
    width: 70px;
    background-color: #f47d54;
}

/* ========================================
   RESPONSIVE - OUR STORY
   ======================================== */
@media (max-width: 991px) {
    .our-story-main-title {
        font-size: 2rem;
    }

    .our-story-title {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .our-story-main-title {
        font-size: 1.7rem;
    }

    .our-story-text {
        font-size: 1rem;
    }
}


/* ========================================
   OUR STORY PAGE
   ======================================== */

   
.our-story2-section {
    width: 100vw;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.our-story2-section .row {
    width: 100%;
}

.ourstoryhero-title {
    font-family: var(--font-heading);
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.2em;
    color: #9d2d21;
   
}


   @media (max-width: 991.98px){

.our-story2-section {
    width: 100vw;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

   }


/* ========================================
   NEWS & EVENTS SECTION
   ======================================== */
.news-section {
    background-color: var(--color-white);
}

/* Main title */
.news-main-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-black);
}

/* Card */
.news-card {
    padding: 0 1rem;
}

/* Image */
.news-image-wrapper {
    margin-bottom: 2rem;
}

.news-description {
       color: #2b7265;

}

.news-image-wrapper img {
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.04);
}

/* Title */
.news-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: #2b7265;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Read More */
.news-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
       color: #2b7265;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.news-link:hover {
       color: #2b7265;
}

/* View All */
.view-all-news {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
      color: #2b7265;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
}

.view-all-news::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 1.5px;
    color: #2b7265;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.view-all-news:hover::after {
    width: 70px;
}


/* ========================================
   CUSTOM BUTTON SYSTEM
   ======================================== */
.btn-custom {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   TEAL ↔ MINT
   ======================================== */
.btn-teal {
    background-color: var(--color-teal-green);
    color: var(--color-pale-mint);
}

.btn-teal:hover,
.btn-teal:focus {
    background-color: var(--color-pale-mint);
    color: var(--color-teal-green);
}

/* ========================================
   MINT ↔ TEAL
   ======================================== */
.btn-mint {
    background-color: var(--color-pale-mint);
    color: var(--color-teal-green);
}

.btn-mint:hover,
.btn-mint:focus {
    background-color: var(--color-teal-green);
    color: var(--color-pale-mint);
}

/* ========================================
   ORANGE ↔ BRICK
   ======================================== */
.btn-orange {
    background-color: var(--color-coral-orange);
    color: var(--color-brick-red);
}

.btn-orange:hover,
.btn-orange:focus {
    background-color: var(--color-brick-red);
    color: var(--color-coral-orange);
}

/* ========================================
   BRICK ↔ ORANGE
   ======================================== */
.btn-brick {
    background-color: var(--color-brick-red);
    color: var(--color-coral-orange);
}

.btn-brick:hover,
.btn-brick:focus {
    background-color: var(--color-coral-orange);
    color: var(--color-brick-red);
}

/* ========================================
   OPTIONAL: ICON ALIGNMENT
   ======================================== */
.btn-custom i {
    font-size: 0.9em;
}
