
/* =====================
   GOOGLE FONTS
===================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* =====================
   HERO IMAGE - Style 3
===================== */
.hero-image {
    position: relative;
    height: 100vh;
    background: url('../../images/yogacenter.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    transition: transform 0.5s;
    min-height: 400px;
    max-height: 600px;
    height: 60vh;
}

.hero-image:hover {
    transform: scale(1.02); /* تكبير خفيف عند التحويم */
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* طبقة داكنة شفافة */
    z-index: 1;
}

.hero-image .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInDown 1s ease forwards;
}

.hero-image h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

.hero-image .btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.hero-image .btn:hover {
    background: #ff4c4c;
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* حركة دخول بسيطة للنص */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =====================
   BUTTONS
===================== */
.btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}
.btn:hover {
    background-color: #34495e;
}

/* =====================
   HIGHLIGHTS / PUFFAR - Style 2
===================== */
.highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.highlight-item {
    background: linear-gradient(135deg, #ffe5e5, #fff0f5);
    padding: 25px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.5s, box-shadow 0.5s, background 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.highlight-item:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, #ffd6d6, #ffe0f0);
}

.highlight-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px dashed #ff6b6b; /* حواف متقطعة */
    margin-bottom: 20px;
    object-fit: cover;
    transition: transform 0.4s, border-color 0.4s;
}

.highlight-item img:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: #ff4c4c;
}

.highlight-item h3 {
    font-size: 1.35rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-item div {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.highlight-item .btn {
    padding: 10px 28px;
    background-color: #ff8c8c;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.highlight-item .btn:hover {
    background-color: #ff5a5a;
    transform: scale(1.1);
}


/* =====================
   SERVICES
===================== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.service-card {
    flex: 1 1 calc(33.33% - 20px);
    background: #fefefe;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ddd;
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}
.service-card h3 {
    margin-bottom: 10px;
}

/* Vertical services list */
.services-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.service-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #f9f9f9;
}

/* =====================
   TEAM
===================== */
.team-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.team-member {
    flex: 1 1 calc(25% - 20px);
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ddd;
}
.team-member img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}
.team-member h3 {
    margin: 10px 0 5px;
}



/* =====================
   HEADER & NAV
===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo img {
    width: 75px;
}
.main-navigation {
    display: flex;
    align-items: center;
}
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 25px;
}
.main-navigation li a {
    font-size: 18px;
    font-weight: bold;
    color: #2f2f2f;
    text-decoration: none;
}
.main-navigation li a:hover,
.main-navigation .current-menu-item a {
    color: #0077cc;
}
.menu-toggle {
    display: none;
}

/* =====================
   MOBILE NAV
===================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 26px;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }
    .main-navigation {
        position: relative;
    }
    .main-navigation ul {
        position: absolute;
        top: 60px;
        right: 0;
        width: 220px;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .main-navigation ul.active {
        display: flex;
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }
    .main-navigation ul li {
        margin-bottom: 15px;
    }
}

/* =====================
   SECTIONS
===================== */
section {
    padding: 80px 0;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #1e3a5f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.site-footer {
  background: #1f2e2a;
  color: #fff;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer a {
  color: #cfe7de;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}


/* =====================
   BOOKING FORM STYLES
===================== */
.wpcf7 {
    max-width: 600px;
    margin: 50px auto;
}
.wpcf7 form {
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}
.wpcf7 form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="date"],
.wpcf7 form select,
.wpcf7 form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.wpcf7 form input[type="submit"] {
    background-color: #2c3e50;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}
.wpcf7 form input[type="submit"]:hover {
    background-color: #34495e;
}

/* =====================
   RESPONSIVE GENERAL
===================== */
@media screen and (max-width: 1024px) {
    .service-card, .news-item {
        flex: 1 1 calc(50% - 20px);
    }
    .team-member {
        flex: 1 1 calc(33.33% - 20px);
    }
}
@media screen and (max-width: 768px) {
    .highlight-item, .service-card, .news-item, .team-member {
        flex: 1 1 100%;
    }
    .hero-image h1 {
        font-size: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .highlights-wrapper {
        grid-template-columns: 1fr;
    }
    .services-list {
        grid-template-columns: 1fr;
    }
}

/* =====================
   FORCE NEWS STYLE (FIX)
===================== */
.news-wrapper {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.news-item {
    flex: 1 1 calc(33.33% - 20px);
    background: #fefefe;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

.news-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #222;
}

.news-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* =====================
   NEWS – CENTERED LAYOUT
===================== */

.news {
    padding: 60px 0;
}

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

.news h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
}

/* Layout */
.news-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

/* Slider */
.news-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
}

/* Track */
.news-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* Slide */
.news-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 20px;
    align-items: center;
}

/* Image */
.news-image img {
    width: 420px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

/* Content */
.news-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.news-date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    display: block;
}

.news-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-content .btn {
    background: #111;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
}

/* Arrows */
.news-prev,
.news-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #111;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 5;
}

.news-prev { left: 15px; }
.news-next { right: 15px; }

/* Dots */
.news-dots {
    text-align: center;
    margin-top: 20px;
}

.news-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.news-dots button.active {
    background: #111;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1200px) {
    .news-slide {
        flex-direction: column;
        text-align: center;
    }

    .news-image img {
        width: 100%;
        height: 220px;
    }
}


/* =====================
   NEWS PAGE 
===================== */

.blog-page {
    padding: 80px 0;
    background-color: #fafafa;
}

.blog-page h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
}

/* Grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image */
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.blog-card-content {
    padding: 22px;
}

.blog-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-card h2 a {
    text-decoration: none;
    color: #111;
}

.blog-card h2 a:hover {
    color: #b88e5d;
}

/* Text */
.blog-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Container */
.news-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Grid */
.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-item {
    flex: 1 1 calc(33.33% - 20px);
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive Images */
.news-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

/* Title & Excerpt */
.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 10px 0;
}

.news-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
}

/* Read More */
.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.read-more:hover {
    background-color: #0056b3;
}

/* Responsive */
@media(max-width: 1024px){
    .news-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media(max-width: 768px){
    .news-item {
        flex: 1 1 100%;
    }
}

/* =====================
   SINGLE NEWS PAGE
===================== */
.single-post-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.single-post-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-post-section .single-post-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.single-post-section .single-post-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.single-post-section .single-post-content .single-post-date {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.single-post-section .single-post-content .single-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #222;
}

.single-post-section .single-post-content .single-post-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.single-post-section .read-more-btn {
    background-color: #007acc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.single-post-section .read-more-btn:hover {
    background-color: #005fa3;
}

/* =====================
   HEADER (FINAL FIX)
===================== */

.site-header {
    width: 100%;
    background: #fff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

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


/* =========================
   SINGLE SERVICE PAGE
========================= */

.single-service {
    padding: 80px 0;
    background-color: #f7f9f8;
}

/* نلمس الكرت فقط */
.single-service .single-service-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* الصورة */
.single-service .single-service-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* المحتوى */
.single-service .single-service-content {
    padding: 40px;
    font-family: 'Poppins', sans-serif;
}

/* العنوان */
.single-service .single-service-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: #222;
}

/* النص */
.single-service .single-service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* القوائم */
.single-service .single-service-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.single-service .single-service-content ul li {
    margin-bottom: 10px;
    color: #444;
}

/* موبايل */
@media (max-width: 768px) {
    .single-service .single-service-content {
        padding: 25px;
    }

    .single-service .single-service-content h1 {
        font-size: 26px;
    }
}

