@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f3efe8;
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: #ffffff;
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    background: #f3efe8;
    border-bottom: 1px solid #ccc;
    color: #000000;
    width: 100%;
    height: 80px;
    position: fixed;
    transition: 1000ms;
    top: 0;
    font-family: 'Abril Fatface', cursive;
    z-index: 100;
}

.navbar a {
    color: #000000;
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar a:hover {
    opacity: 0.8;
}

.navbar ul {
    display: flex;
    margin-left: 100px;
    font-size: 22px;
}

.navbar .logo {
    font-family: 'Pacifico', cursive;
    font-weight: 500;
    font-size: 50px;
}


/* NAVBAR SCROLL */

.navbar.top {
    background: transparent;
    border-bottom: none;
}

.navbar.top a {
    color: #ffffff;
}


/* SLIDER */

.hero {
    overflow: hidden;
    position: relative;
    height: 100vh;
    top: 0;
    left: 0;
}

.banner1,
.banner2 {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner1::after,
.banner2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner1 {
    animation: slide1 16s linear infinite;
}

.banner2 {
    animation: slide2 16s linear infinite;
}

@keyframes slide1 {
    0% {
        visibility: visible;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: hidden;
    }
}

@keyframes slide2 {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

.hero img {
    width: 100%;
    height: 100%;
    position: absolute;
    animation: zoom-in 8s linear infinite;
}

@keyframes zoom-in {
    0% {
        width: 100%;
    }
    100% {
        width: 106%;
    }
}

.text {
    width: 100%;
    position: absolute;
    top: 260px;
    color: #ffffff;
    justify-content: center;
    text-align: center;
    line-height: 3rem;
    z-index: 1;
}

.text a {
    font-size: 20px;
    text-decoration: underline;
}

.text a:hover {
    opacity: 0.7;
}

.text h1 {
    margin-bottom: 30px;
    font-size: 50px;
}


/* MAIN FEATURE ABOUT HOTEL & FOOD*/

.section-padding {
    padding: 20px 40px 40px;
}

.flex-grid .row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-bottom: 100px;
}

.flex-grid .column {
    flex: 50%;
    max-width: 500px;
    padding-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.flex-grid .column .page-title {
    padding-bottom: 40px;
    text-align: center;
    padding-top: 20px;
}

.flex-grid .column .page-title2 {
    text-align: center;
    padding-top: 40px;
}

.flex-grid img {
    width: 100%;
    height: 500px;
    transition: 800ms ease-in-out;
}

.box {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.flex-grid .column .title {
    font-weight: 600;
    font-size: 12px;
    color: #696969;
    padding-bottom: 10px;
}

.flex-grid .column h4 {
    font-size: 25px;
    padding-bottom: 15px;
}

.flex-grid .column p {
    font-weight: 100;
    font-size: 15px;
    padding-bottom: 30px;
}

.flex-grid .column img:hover {
    transform: scale(1.023);
}


/* Gallery */

.gallery {
    background-color: #534c4c;
    padding-top: 100px;
    padding-bottom: 50px;
}

.gallery h1 {
    padding-left: 150px;
    color: #ffffff;
    font-size: 2rem;
}

.grid-section {
    display: grid;
    width: 75%;
    margin: 50px auto;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 0.4rem;
}

.grid-img img {
    height: 100%;
    width: 100%;
}

.grid {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
}

.grid-img {
    width: 100%;
    height: 100%;
    transition: 500ms;
}

.grid:nth-child(1) {
    grid-row: 1/ span 2;
    grid-column: 1/ span 2;
}

.grid:nth-child(6) {
    grid-row: 2/ span 2;
    grid-column: 4/ span 2;
}

.grid:hover .grid-img {
    transform: scale(1.1);
    transition: 500ms ease-in-out;
}


/* About hotel */

.about-hotel {
    max-width: 60%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-left: 20%;
    line-height: 2;
    margin-top: 70px;
    margin-bottom: 50px;
    font-weight: 100;
    font-size: 15px;
    color: #000000;
}

.about-hotel a.btn {
    color: #000000;
}

.about-hotel .btn {
    cursor: pointer;
    background-color: #c2e3d4;
    border: 1px solid #c2e3d4;
    font-weight: 500;
    color: #000000;
    padding: 10px 20px;
    margin: 30px 0;
    display: inline-block;
    transition: opacity 500ms;
}

.btn:hover {
    opacity: 0.7;
}


/* HOTEL GALLERY */

.about-pic {
    padding-top: 100px;
    padding-bottom: 50px;
}

.grid-about-section {
    display: grid;
    width: 75%;
    margin: 50px auto;
    grid-template-rows: repeat(9, auto);
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}

.grids {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
}

.grids:nth-child(1) {
    grid-row: 1/ span 2;
    grid-column: 1/ span 4;
}

.grids:nth-child(2) {
    grid-row: 3/ span 1;
    grid-column: 1/ span 2;
}

.grids:nth-child(3) {
    grid-row: 3/ span 2;
    grid-column: 3/ span 2;
}

.grids:nth-child(6) {
    grid-row: 5/ span 2;
    grid-column: 1/ span 4;
}

.grids:nth-child(7) {
    grid-row: 7/ span 2;
    grid-column: 1/ span 3;
}

.grids:nth-child(10) {
    grid-row: 9/ span 1;
    grid-column: 1/ span 4;
}

.grids:hover .grid-img {
    transform: scale(1.1);
    transition: 500ms ease-in-out;
}


/* ABOUT PAGE */

.hero-a {
    background: url(images/abouts.jpg) no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
}

.hero .content h1 {
    font-size: 55px;
}

.hero .content p {
    font-size: 23px;
    max-width: 600px;
    margin: 20px 0 30px;
}

.pics img {
    height: 100%;
    width: 100%;
}


/* CONTACT FORM */

.l-heading {
    font-size: 40px;
    line-height: 1.2;
}

.container {
    margin: auto;
    overflow: hidden;
    padding: 30px 10px;
    margin-top: 3rem;
}

.text-primary {
    color: darkgoldenrod;
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px #ddd solid;
}

#contact-form textarea {
    height: 200px;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #f7c08a;
}

.btns {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
}

.bg-dark {
    background: #333;
    color: #fff;
}

.boxs {
    display: inline-block;
    justify-content: space-evenly;
    padding
}


/* FOOTER */

.footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 40px;
    color: #fff;
}

.footer>* {
    flex: 1 100%;
}

.footer-left {
    color: #000000;
    flex: 1 0px;
    margin-left: 90px;
    font-family: 'Pacifico', cursive;
}

.footer-left h2 {
    margin-left: 60px;
    font-family: sans-serif;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2rem;
}

.footer-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 2 0px;
    padding-bottom: 10px;
    color: #000000;
}

.footer-right>* {
    flex: 1;
    margin-left: 4em;
    margin-right: 2em;
}

.box a {
    color: #000000;
}

.footer-bottom {
    text-align: end;
    color: #000000;
}

.social a {
    width: 40px;
    height: 6px;
    display: inline-block;
    margin-right: 10px;
    margin-top: 0.9em;
}

.social a i {
    border-radius: 50%;
    color: #000000;
    padding: 14px 12px;
    font-size: 20px;
}

.feature h3 {
    font-size: 15px;
}


/* تنسيق الزرار الرئيسي */

.visit-hotel a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e0a96d;
    /* لون ذهبي شيك يتماشى مع خشب الفنادق */
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    /* حواف دائرية ناعمة */
    letter-spacing: 1px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    margin-top: 15px;
}


/* تأثير عند الوقوف عليه بالماوس (Hover) */

.visit-hotel a:hover {
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-3px);
    /* يترفع لفوق سنة بسيطة */
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}


/* ==========================================
   تنسيق الفوتر (Footer Styling)
   ========================================== */


/* الفوتر الرئيسي */

.footer {
    background-color: #121212;
    /* خلفية سوداء دافئة ورائقة */
    color: #d1d1d1;
    padding: 60px 8% 20px 8%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 2px solid #c5a880;
    /* خط ذهبي فاخر */
}


/* الجزء الأيسر - اللوجو باسم الفندق */

.footer-left h1 {
    color: #c5a880;
    /* لون ذهبي */
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.footer-left h2 {
    color: #888888;
    font-size: 13px;
    letter-spacing: 5px;
    margin-top: 0;
}


/* الجزء الأيمن - القوائم والمعلومات */

.footer-right {
    display: flex;
    gap: 70px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}


/* خط رفيع تحت العناوين الفرعية */

.footer-right h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #c5a880;
}

.footer-right ul.box {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right ul.box li {
    margin-bottom: 12px;
}

.footer-right ul.box a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}


/* تأثير عند الوقوف على الروابط */

.footer-right ul.box a:hover {
    color: #c5a880;
    padding-left: 6px;
    /* حركة بسيطة لليمين */
}


/* ==========================================
   تنسيق أيقونات السوشيال ميديا
   ========================================== */

.social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    /* دائرية زجاجية شفافة */
    border: 1px solid rgba(197, 168, 128, 0.3);
    /* إطار ذهبي هادئ */
    border-radius: 50%;
    color: #c5a880;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

/* تجاوب أيقونات ولينكات التواصل للموبايل */
@media (max-width: 768px) {
  .social {
    display: flex !important;
    flex-wrap: wrap !important; /* يتنقل للسطر الجديد لو المساحة مأظبطتش */
    justify-content: center !important; /* يتوسطنوا في نص الشاشة */
    gap: 15px !important; /* مسافة مناسبة بين كل أداة للتواصل والثانية */
    width: 100% !important;
  }

  .social a, .social-btn {
    flex: 1 1 auto; /* ينكمش ويتمدد حسب مساحة الموبايل */
    max-width: 200px; /* يمنع الزرار إنه يكبر زيادة عن اللزوم */
    text-align: center;
  }
}
/* تأثير الهوفر مع الألوان الرسمية للمنصات */

.social a:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.social a[href*="facebook"]:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.social a[href*="x.com"]:hover,
.social a[href*="twitter"]:hover {
    background-color: #000000;
    border-color: #444444;
}

.social a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social a[href*="linkedin"]:hover {
    background-color: #0a66c2;
    border-color: #0a66c2;
}


/* الحاوية الرئيسية للتواصل */

#contact-info .contact-info {
    display: flex;
    justify-content: space-evenly;
    /* توسيع العناصر وتوزيع المساحة بالتساوي */
    align-items: flex-start;
    padding: 50px 8%;
    /* إعطاء مساحة داخلية فوق وتحت عشان مبقوش ملزوقين */
    gap: 30px;
    /* مسافة أمان بين كل صندوق والتاني */
    text-align: center;
}


/* الصندوق الخاص بكل عنصر (Location, Phone, Email) */

#contact-info .boxs {
    flex: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* توسيع المسافة بين الأيقونة والعنوان */

#contact-info .boxs i {
    color: #c5a880;
    /* لون ذهبي */
    margin-bottom: 15px;
    /* مسافة تحت الأيقونة */
}


/* توسيع المسافة بين العنوان والنص */

#contact-info .boxs h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    /* مسافة تحت العنوان */
    font-weight: 600;
}


/* النص الفرعي (العنوان، الرقم، الإيميل) */

#contact-info .boxs p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}


/* تجاوب للموبايل عشان ما يتداخلوش لو الشاشة صغرت */

@media (max-width: 768px) {
    #contact-info .contact-info {
        flex-direction: column;
        gap: 40px;
    }
}


/* ==========================================
   الجزء السفلي للحقوق (Copyright)
   ========================================== */

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #222222;
}

.footer-bottom p {
    color: #666666;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
}


/* ==========================================
   التجاوب مع الموبايل (Responsive)
   ========================================== */

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }
    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-right h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social {
        justify-content: center;
    }
}


/* MOBILE */

@media only screen and (max-width:769px) {
    .navbar {
        text-align: center;
        justify-content: center;
    }
    .navbar.top a {
        color: #000000;
    }
    .flex-grid .column {
        padding-bottom: 40px;
        box-shadow: none;
        padding-right: 0;
        padding-left: 0;
    }
    .flex-grid .row {
        display: block;
    }
    .gallery {
        padding-top: 0px;
    }
    .gallery h1 {
        padding-left: 5px;
    }
    .grid-section {
        display: block;
    }
    .grid-about-section {
        display: block;
    }
    .social {
        font-size: 10px;
    }
    .boxs {
        display: table-footer-group;
    }
    .contact-info {
        padding: 10px 20px;
    }
    .footer-left {
        margin-bottom: 20px;
        margin-left: 0px;
        font-size: 13px;
    }
}
