/*
Theme Name: Simple Elementor Theme
Theme URI:
Author: Your Name
Author URI:
Description: A simple theme with Elementor support
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-elementor-theme
*/

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header Styles */
/* .site-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
  margin-bottom: 2rem;
} */

.site-branding {
  text-align: center;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.site-title:hover {
  color: #007cba;
}

/* Main Content Styles */
.site-main {
  min-height: 60vh;
}

/* Default Page Content Styles */
.default-page-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.default-image-section {
  position: relative;
  overflow: hidden;
}

.page-image,
.post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.default-image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.default-button-section {
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.default-button {
  display: inline-block;
  padding: 12px 30px;
  background: #007cba;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #007cba;
  cursor: pointer;
}

.default-button:hover {
  background: #005a87;
  border-color: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,124,186,0.3);
}

/* Button Style Variations */
.default-button.button-outline {
  background: transparent;
  border: 2px solid #007cba;
  color: #007cba;
}

.default-button.button-outline:hover {
  background: #007cba;
  color: #fff;
}

.default-button.button-rounded {
  border-radius: 50px;
  padding: 15px 40px;
}

/* Elementor Widget Specific Styles */
.elementor-widget-simple-elementor-theme-default-structure .default-page-content {
  margin-bottom: 0;
}

.elementor-widget-simple-elementor-theme-default-structure .default-image-section {
  margin-bottom: 0;
}

.elementor-widget-simple-elementor-theme-default-structure .default-button-section {
  margin-bottom: 0;
}

.page-content {
  padding: 2rem;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  margin-bottom: 1rem;
  color: #333;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Post Styles */
.default-post-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.default-post-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.entry-header {
  padding: 2rem 2rem 1rem;
}

.entry-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.entry-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: #007cba;
}

.entry-content {
  padding: 0 2rem 2rem;
}
/*
/* .site-footer {
  background: #ffff;
  color: #ffff;
  padding: 1rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #007cba;
}

.footer-bottom {
  /* border-top: 1px solid #555; */
  /* padding-top: 1rem; */
  text-align: center;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}
 */
/* Navigation Styles */
.main-navigation {
  margin-top: 1rem;
}

.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.main-navigation ul li {
  margin: 0;
}

.main-navigation ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.main-navigation ul li a:hover {
  color: #007cba;
  background: rgba(0,124,186,0.1);
}

.main-navigation ul li.current-menu-item a {
  color: #007cba;
  background: rgba(0,124,186,0.1);
}

.posts-navigation {
  margin: 2rem 0;
  text-align: center;
}

.posts-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.posts-navigation a {
  padding: 10px 20px;
  background: #007cba;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.posts-navigation a:hover {
  background: #005a87;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .page-image,
  .post-image,
  .default-image {
    height: 250px;
  }

  .default-button-section,
  .page-content,
  .entry-header,
  .entry-content {
    padding: 1.5rem;
  }

  .entry-title {
    font-size: 1.5rem;
  }

  .default-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .site-title {
    font-size: 1.5rem;
  }

  .page-image,
  .post-image,
  .default-image {
    height: 200px;
  }

  .default-button-section,
  .page-content,
  .entry-header,
  .entry-content {
    padding: 1rem;
  }
}

/* Elementor Compatibility */
.elementor-default .elementor-widget-container {
  margin-bottom: 0;
}

.elementor-default .elementor-section {
  margin-bottom: 0;
}

/* WooCommerce Compatibility */
.woocommerce .default-page-content {
  margin-bottom: 0;
}

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Focus styles for accessibility */
.default-button:focus,
.entry-title a:focus,
.posts-navigation a:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

.whatsapp-btn {
  /* background-color: #25D366 !important; */
  color: #f8f9fa !important;
}





