/*
Theme Name: Lebanon site
Text Domain: lebanonsite.com
Version: 1.5
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

 padding: 0;
/* Reset & Base */
* {
  margin: 0;
  box-sizing: border-box;
}

body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #0e0e0e; /* Dark background */
      color: #f5f5f5;
      line-height: 1.6;
    }

    a {
      color: #d4af37; /* Gold accent */
      text-decoration: none;
      transition: 0.3s ease;
    }

    a:hover {
      color: #ffce6d;
    }

    h1, h2, h3 {
      color: #ffce6d;
      letter-spacing: 1px;
    }

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

    /* Header */
    .header {
      background: #1a1a1a;
      padding: 15px 0;
      border-bottom: 2px solid #d4af37;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      color: #ffce6d;
      font-size: 26px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .navbar ul li a {
      font-weight: 500;
      color: #fff;
      transition: color 0.3s;
    }

    .navbar ul li a:hover {
      color: #ffce6d;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(to right, #111, #3a2f1f);
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      background-attachment: fixed;
    }

    .hero h1 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      color: #e0e0e0;
    }

    /* Profiles Section */
    .profiles {
      padding: 60px 0;
      text-align: center;
    }

    .profile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .profile-card {
      background: #1c1c1c;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
    }

    .profile-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(255, 206, 109, 0.2);
    }

    .profile-card img {
      width: 100%;
      border-radius: 12px;
      height: 300px;
      object-fit: cover;
    }

    .verified-text {
      background-color: #d4af37;
      color: #000;
      font-size: 12px;
      font-weight: bold;
      padding: 4px 10px;
      border-radius: 8px;
      position: absolute;
      top: 10px;
      right: 10px;
    }

    .name {
      margin: 15px 0 5px;
    }

    /* About Section */
    .about {
      background: #161616;
      padding: 60px 20px;
      border-top: 2px solid #3a3a3a;
    }

    .about p {
      color: #cfcfcf;
    }

    /* Feature Sections */
    .feature-content {
      padding: 60px 0;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .feature-content.alt .feature-grid {
      direction: rtl;
    }

    .feature-text {
      direction: ltr;
    }

    .feature-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    /* Gallery */
    .gallery {
      background: #121212;
      padding: 60px 0;
      text-align: center;
    }

    /* Rates */
    .rates {
      padding: 60px 0;
      background: #1a1a1a;
      text-align: center;
    }

    .rates-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .rate-card {
      background: #262626;
      padding: 20px 40px;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }

    .price {
      color: #d4af37;
      font-size: 22px;
      margin-top: 5px;
    }

    /* Contact */
    .contact {
      padding: 60px 0;
      text-align: center;
      background: #111;
    }

    .contact a {
      color: #ffce6d;
    }

    /* Footer */
    .footer {
      background: #000;
      padding: 20px;
      text-align: center;
      color: #888;
      border-top: 1px solid #2a2a2a;
    }
@media (max-width: 768px) {
   /* Responsive */
    @media (max-width: 768px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }

      .menu-toggle {
        display: block;
      }

      .navbar ul {
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        display: none;
        text-align: right;
        padding: 20px;
      }

      .navbar.active ul {
        display: flex;
      }
    }



/* Content Sections */
.feature-content {
  padding: 60px 0;
  background: #0e0e0e;
}

.feature-content.alt {
  background: #0e0e0e;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.feature-image {
  flex: 1 1 45%;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-text {
  flex: 1 1 50%;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffce6d;
}

.feature-text p {
  font-size: 1rem;
  color: #f5f5f5;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
  }

  .feature-image,
  .feature-text {
    flex: 1 1 100%;
  }
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  background-color: #0e0e0e;
}

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

/* Rates */
.rates {
  padding: 60px 20px;
  background-color: #0e0e0e;
}

.rates ul {
  list-style: none;
  font-size: 1.2rem;
  color: #f3c2b0;
  line-height: 2;
}

/* Contact */
.contact {
  padding: 60px 20px;
  background-color: #0e0e0e;
  text-align: center;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #0e0e0e;
  padding: 30px 0;
  text-align: center;
  font-size: 1rem;
  color: #bbb;
  border-top: 1px solid #2e1b3e;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f3c2b0;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.rates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.rate-card {
  background-color: #0e0e0e;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 250px;
  transition: transform 0.3s ease, background-color 0.3s;
}

.rate-card:hover {
  transform: translateY(-5px);
  background-color: #3a255a;
}

.rate-card h3 {
  font-size: 1.5rem;
  color: #f3c2b0;
  margin-bottom: 10px;
}

.rate-card .price {
  font-size: 1.3rem;
  color: #ffd9c2;
  font-weight: bold;
}
 .profile-header {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 40px;
    }

    .profile-image {
      flex: 1 1 350px;
    }

    .profile-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .profile-info {
      flex: 2 1 400px;
    }

    .profile-info h1 {
      color: #f3c2b0;
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    .profile-info .title {
      font-size: 1.2rem;
      color: #d4b3ff;
      margin-bottom: 10px;
    }

    .profile-info .phone {
      font-size: 1.1rem;
      color: #ffd9c2;
      margin-bottom: 20px;
    }

    .profile-info .phone a {
      color: #ffd9c2;
      text-decoration: none;
    }

    .profile-info p {
      line-height: 1.6;
    }

    .gallery {
      margin-bottom: 40px;
    }

    .gallery h2 {
      margin-bottom: 20px;
      color: #f3c2b0;
      font-size: 1.8rem;
    }

    .gallery-images {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .gallery-images img {
      width: 280px;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid #3a255a;
    }

    .profile-description h2 {
      color: #f3c2b0;
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .profile-description p {
      line-height: 1.7;
      font-size: 1rem;
      color: #f8f0e3;
    }

    .back-link {
      display: inline-block;
      margin-top: 40px;
      color: #bbb;
      text-decoration: underline;
    }

    .back-link:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      .profile-header {
        flex-direction: column;
        align-items: center;
      }

      .profile-info {
        text-align: center;
      }

      .gallery-images {
        justify-content: center;
      }
    }
	/* Full-Width Content Section */
.content-section {
  position: relative;
  width: 100%;
  margin: 0;                     /* Ensure no margin on any screen */
  padding: 100px 20px;           /* Base padding, good for desktop */
  background: linear-gradient(to right, #000, #2a210f);
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;        /* Ensures padding doesn’t break width */
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://www.beirutescortgirls.com/images/model-image/8/2.jpeg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.content-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.content-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease;
}

.content-section h2 {
  color: #FFD700;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.content-section p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.cta-btn:hover {
  background: #ffce6d;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tablet */
@media (max-width: 992px) {
  .content-section {
    padding: 80px 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .content-section {
    padding: 60px 15px;          /* Smaller padding for mobile */
  }
}