/*
Theme Name: Lukumanu 2025 Update
Description: A responsive WordPress starter theme for 2025
Author: Your Name
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lukumanu-2025-update
*/

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

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Header Styles */
.site-header {
  background: #E9D5C8;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding {
  flex-shrink: 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  max-height: 50px;
  width: auto;
}

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6b4e3d;
  text-decoration: none;
}

/* Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  padding: 0.5rem 1.2rem;
  text-decoration: underline;
  color: #6b4e3d;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.main-navigation a:hover {
  opacity: 0.7;
}

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
}

.book-now-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #6B3D2E;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.book-now-btn:hover {
  background: #5a2f23;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 61, 46, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #6b4e3d;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* Main Content */
.site-main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.content-area {
  flex: 2;
  margin-right: 2rem;
}

.widget-area {
  flex: 1;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
}

/* Posts */
.post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.post:last-child {
  border-bottom: none;
}

.entry-header {
  margin-bottom: 1.5rem;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.entry-title a {
  text-decoration: none;
  color: #333;
}

.entry-title a:hover {
  color: #0073aa;
}

.entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.entry-content {
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Buttons */
.btn,
.wp-block-button__link,
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #5A2F23;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.btn:hover,
.wp-block-button__link:hover,
input[type='submit']:hover {
  background: #4a1f13;
}

/* Forms */
input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='tel'],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* Footer */
.site-footer {
  background: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Responsive Design - Mobile First */
@media (max-width: 968px) {
  .header-container {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #E9D5C8;
    transition: right 0.3s ease;
    padding-top: 4rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .main-navigation.toggled {
    right: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .main-navigation a {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(107, 78, 61, 0.1);
    text-align: left;
  }

  .header-cta {
    display: none;
  }

  .container {
    padding: 0 15px;
  }

  .row {
    flex-direction: column;
  }

  .content-area {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .widget-area {
    padding: 1.5rem;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .site-main {
    padding: 1rem 0;
  }

  .post {
    margin-bottom: 2rem;
  }

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

  .btn,
  .wp-block-button__link,
  input[type='submit'] {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* WordPress Core Styles */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto 1.5rem;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.wp-caption-text {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  padding: 0.5rem 0;
}

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

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #6B3D2E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(107, 61, 46, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #5a2f23;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 61, 46, 0.4);
}

/* Search Form Styles */
.search-form {
  display: flex;
  margin: 1rem 0;
  max-width: 400px;
}

.search-field {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.search-submit {
  padding: 0.75rem 1.5rem;
  background: #6B3D2E;
  color: #fff;
  border: 1px solid #6B3D2E;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-submit:hover {
  background: #5a2f23;
  border-color: #5a2f23;
}

/* Navigation Enhancements */
.submenu-toggle {
  background: none;
  border: none;
  color: #fff;
  padding: 0.5rem;
  margin-left: 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
}

.submenu-toggle:hover {
  color: #ccc;
}

.main-navigation .sub-menu {
  display: none;
  background: #444;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation .sub-menu li {
  border-bottom: 1px solid #555;
}

.main-navigation .sub-menu a {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
}

/* Widget Styles */
.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0073aa;
  color: #333;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.widget li:last-child {
  border-bottom: none;
}

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

.widget a:hover {
  color: #0073aa;
}

/* Footer Widget Styles */
.footer-widgets {
  margin-bottom: 2rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget .widget-title {
  color: #fff;
  border-color: #fff;
}

.footer-widget a {
  color: #ccc;
}

.footer-widget a:hover {
  color: #fff;
}

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

.footer-navigation li {
  margin: 0 1rem;
}

.footer-navigation a {
  color: #ccc;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
}

.footer-navigation a:hover {
  color: #fff;
}

/* Post Navigation */
.post-navigation {
  margin: 3rem 0;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
  max-width: 48%;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.post-navigation .nav-title {
  display: block;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.post-navigation a:hover .nav-title {
  color: #0073aa;
}

/* Pagination */
.pagination {
  text-align: center;
  margin: 3rem 0;
}

.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: #f9f9f9;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

.pagination .dots {
  padding: 0.5rem;
  color: #666;
}

/* Menu Mobile Body Lock */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .main-navigation.toggled .sub-menu {
    display: block;
    background: #555;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1rem;
  }

  .post-navigation .nav-links {
    flex-direction: column;
    gap: 2rem;
  }

  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    max-width: 100%;
    text-align: center;
  }

  .footer-navigation ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-navigation li {
    margin: 0.25rem 0;
  }
}

/* Homepage Specific Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  padding-right: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #333, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #007cba, #0073aa);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 115, 170, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
  background: linear-gradient(45deg, #005a87, #004a73);
}

.hero-images {
  position: relative;
}

.image-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  display: none;
  position: relative;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carousel-slide .placeholder-image {
  width: 100%;
  height: 400px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #0073aa;
  transform: scale(1.2);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #007cba, #0073aa);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #007cba, #0073aa);
}

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

.service-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: white;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial-content {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text cite {
  display: block;
  font-style: normal;
}

.testimonial-text strong {
  color: #333;
  font-size: 1.1rem;
}

.testimonial-text span {
  color: #666;
  display: block;
  margin-top: 5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ccc;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  color: white;
  margin-right: 10px;
}

.contact-item a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.social-links {
  margin-top: 30px;
}

.social-link {
  display: inline-block;
  margin-right: 20px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-group select option {
  color: #333;
  background: white;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #007cba, #0073aa);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-container,
  .container {
    padding: 0 15px;
  }

  .service-card,
  .testimonial-content,
  .contact-form {
    padding: 30px;
  }

  .carousel-slide img {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Placeholder Images */
.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  color: #666;
  font-weight: 600;
  text-align: center;
  border-radius: inherit;
}

/* Hero Placeholders */
.hero-placeholder-1,
.hero-placeholder-2,
.hero-placeholder-3 {
  width: 100%;
  height: 400px;
  font-size: 1.2rem;
}

.hero-placeholder-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.hero-placeholder-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}
.hero-placeholder-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

/* About Placeholder */
.about-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  font-size: 1.1rem;
  border-radius: 20px;
}

/* Service Placeholders */
.service-placeholder-1,
.service-placeholder-2,
.service-placeholder-3,
.service-placeholder-4,
.service-placeholder-5,
.service-placeholder-6 {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  border-radius: 50%;
}

.service-placeholder-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.service-placeholder-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.service-placeholder-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.service-placeholder-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.service-placeholder-5 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.service-placeholder-6 {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Testimonial Placeholders */
.testimonial-placeholder-1,
.testimonial-placeholder-2,
.testimonial-placeholder-3 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.testimonial-placeholder-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.testimonial-placeholder-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.testimonial-placeholder-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Gallery Placeholders */
.gallery-placeholder-1,
.gallery-placeholder-2,
.gallery-placeholder-3,
.gallery-placeholder-4,
.gallery-placeholder-5,
.gallery-placeholder-6 {
  width: 100%;
  height: 250px;
  font-size: 1.1rem;
  color: white;
  font-weight: 600;
  border-radius: 15px;
}

.gallery-placeholder-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gallery-placeholder-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.gallery-placeholder-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.gallery-placeholder-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.gallery-placeholder-5 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.gallery-placeholder-6 {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Hover effects for placeholders */
.service-card:hover .placeholder-image,
.gallery-item:hover .placeholder-image {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .site-header,
  .main-navigation,
  .widget-area,
  .site-footer,
  .back-to-top,
  .post-navigation {
    display: none;
  }

  .content-area {
    width: 100%;
    margin: 0;
  }

  .entry-content img {
    max-width: 100%;
    page-break-inside: avoid;
  }
}
