/* =========================
   GLOBAL RESET
========================= */

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* =========================
   BRAND TYPOGRAPHY
========================= */

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #1b4332;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.7;
}

/* =========================
   HEADER
========================= */

header {
    background-color: #1b4332;
    color: white;
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav a {
    color: white;
    margin-left: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.75;
}

/* =========================
   HERO
========================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7rem 8%;
    background: linear-gradient(to bottom, #ffffff, #eef4f0);
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 560px;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
    line-height: 1.15;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #2d4f3f;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-6px);
}

/* =========================
   BUTTON
========================= */

.btn {
    background-color: #1b4332;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
}

.btn:hover {
    background: #163c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* =========================
   AUTHORITY SECTION
========================= */

.authority-section {
    background: #1b4332;
    color: white;
    padding: 7rem 8%;
}

.authority-container {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    max-width: 1200px;
    margin: auto;
}

.authority-left {
    flex: 1;
}

.authority-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.authority-left p {
    font-size: 1.15rem;
    color: #d7e4dd;
}

.authority-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.authority-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease;
}

.authority-item:hover {
    transform: translateX(5px);
}

.authority-number {
    font-family: 'Roboto Slab', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #6d9c4b;
    min-width: 60px;
}

.authority-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.authority-item p {
    font-size: 1rem;
    color: #cfe3d7;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-info {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #2d4f3f;
}

/* =========================
   FRESH FRIES SECTION
========================= */

.fresh-section {
    padding: 7rem 8%;
    background: #ffffff;
}

.fresh-container {
    max-width: 1200px;
    margin: auto;
}

.fresh-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.fresh-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.fresh-text p {
    font-size: 1.1rem;
    color: #2d4f3f;
}

.fresh-gallery {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fresh-gallery img {
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.fresh-gallery img:hover {
    transform: translateY(-8px);
}


/* =========================
   PREMIUM CONTACT SECTION
========================= */

.contact-section {
    background: #f1f5f3;
    padding: 6rem 8%;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: auto;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.contact-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2d4f3f;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    color: #6d9c4b;
}

.contact-item span {
    font-size: 1.1rem;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }
}


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

footer {
    text-align: center;
    padding: 2.5rem;
    background-color: #f1f1f1;
    font-size: 0.9rem;
    color: #666;
}

/* =========================
   INDUSTRIAL METAL SHUTTER
========================= */

#shutterScreen {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        #d9d9d9 0%,
        #c4c4c4 35%,
        #b3b3b3 65%,
        #9f9f9f 100%
    );
    overflow: hidden;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
}

.shutter-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        #c8c8c8 0px,
        #c8c8c8 6px,
        #a8a8a8 6px,
        #a8a8a8 12px
    );
    box-shadow:
        inset 0 30px 60px rgba(0,0,0,0.3),
        inset 0 -30px 60px rgba(0,0,0,0.3);
}

.shutter-lines::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(255,255,255,0.4) 15%,
        rgba(255,255,255,0.1) 45%,
        rgba(255,255,255,0.4) 75%
    );
    mix-blend-mode: overlay;
}

/* 🔥 FIXED LAYOUT HERE */

.shutter-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;     /* forces vertical stacking */
    align-items: center;        /* centers horizontally */
    justify-content: center;    /* centers vertically */
    text-align: center;
    width: 100%;
}

.shutter-logo {
    width: 380px;
    max-width: 70vw;
    height: auto;
}

#openBtn {
    margin-top: 40px;
    padding: 16px 60px;

    border: 2px solid #1b4332;
    background: white;
    color: #1b4332;

    cursor: pointer;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 500;

    transition: all 0.3s ease;
}

#openBtn:hover {
    background: #1b4332;
    color: white;
}

.roll-up {
    animation: rollUp 1.8s cubic-bezier(.77,0,.18,1) forwards;
}

@keyframes rollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-110%); }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem 6%;
    }

    .authority-container {
        flex-direction: column;
        gap: 3rem;
    }

    .authority-left h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    header {
        padding: 1rem 5%;
    }

    nav a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }

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

/* =========================
   RTL SUPPORT
========================= */

[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] header {
    flex-direction: row-reverse;
}

[dir="rtl"] nav a {
    margin-left: 0;
    margin-right: 2rem;
}

[dir="rtl"] .hero {
    flex-direction: row-reverse;
}

[dir="rtl"] .authority-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .authority-item {
    flex-direction: row-reverse;
}
