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

body {
  font-family: 'Prompt', sans-serif;
  background-color: #f9f7f3;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
header {
  background-color: #fff8ec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 60px;
}

.logo-container {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.logo-container img {
  height: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}

.logo-container span {
  font-size: 1.2em;
  font-weight: 600;
  color: #5c3b0c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile Menu */
.menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 10px;
  z-index: 1100;
}

.menu span {
  height: 3px;
  background-color: #5c3b0c;
  border-radius: 2px;
  transition: 0.3s;
}

/* Navigation */
nav.nav-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: #5c3b0c;
  font-weight: 600;
  font-size: 0.9em;
  font-family: 'Prompt', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a:hover {
  color: #d2a756;
  background-color: rgba(210, 167, 86, 0.1);
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, #fffaf2, #f4e8d8);
  flex-wrap: wrap;
  gap: 30px;
}

.hero .text {
  flex: 1;
  max-width: 600px;
  min-width: 280px;
}

.hero .text p.main-text {
  font-size: clamp(1.1em, 2.5vw, 1.5em);
  color: #6b4e19;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero .text p.main-text a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.hero .text p.main-text a:hover {
  text-decoration: underline;
  color: #b0760c;
}

.hero .image {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.hero .image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  display: block;
}

/* Contact Section */
.contact {
  background-color: #fff3da;
  text-align: center;
  padding: 30px 20px;
}

.contact-title {
  font-size: clamp(1em, 2vw, 1.2em);
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.phone-numbers {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.phone-link {
  color: #b0760c;
  font-size: clamp(1.1em, 2.5vw, 1.3em);
  font-weight: bold;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border: 2px solid transparent;
}

.phone-link:hover {
  background-color: rgba(176, 118, 12, 0.1);
  transform: translateY(-2px);
  border-color: #b0760c;
}

.phone-separator {
  color: #666;
  font-size: 1.2em;
  margin: 0 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9em, 1.8vw, 1em);
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  gap: 8px;
}

.facebook-link {
  color: #1877f2;
  background-color: rgba(24, 119, 242, 0.1);
}

.facebook-link:hover {
  background-color: rgba(24, 119, 242, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  border-color: #1877f2;
}

.line-link {
  color: #06c755;
  background-color: rgba(6, 199, 85, 0.1);
}

.line-link:hover {
  background-color: rgba(6, 199, 85, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  border-color: #06c755;
}

.social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 25px 20px;
  background-color: #f0f0f0;
  border-top: 1px solid #ddd;
}

.footer-text {
  font-size: 0.9em;
  color: #666;
  margin: 0;
}

.footer-link {
  color: #1877f2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0d47a1;
  text-decoration: underline;
}

/* Portfolio Section */
.portfolio-title {
  font-size: clamp(1.3em, 3vw, 1.6em);
  text-align: center;
  margin-top: 40px;
  color: #6b4e19;
  font-weight: bold;
  padding: 0 20px;
  margin-bottom: 20px;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.portfolio-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.portfolio-gallery img:hover {
  transform: scale(1.03);
}

/* Blog Section */
.blog h1 {
  font-size: clamp(1.3em, 3vw, 1.6em);
  text-align: center;
  margin-top: 40px;
  color: #6b4e19;
  font-weight: bold;
  padding: 0 20px;
}

section.blog {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.article-list {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

.article-list li {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.article-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-list li h3 {
  margin: 0 0 10px 0;
}

.article-list li h3 a {
  font-size: clamp(1em, 2.2vw, 1.2em);
  color: #6b4e19;
  text-decoration: none;
  font-weight: 600;
}

.article-list li h3 a:hover {
  color: #b0760c;
  text-decoration: underline;
}

.article-list p {
  margin: 0;
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
}

section.blog-detail {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.pagination {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #5c3b0c;
  background-color: #f9f7f3;
  border: 1px solid #d2a756;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination a:hover {
  background-color: #d2a756;
  color: white;
  transform: translate(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagination span.current-page {
  background-color: #b0760c;
  color: white;
  border-color: #b0760c;
  font-weight: 700;
  cursor: default;
}

.pagination span.disabled {
  background-color: #f0f0f0;
  color: #aaa;
  border-color: #ccc;
  cursor: not-allowed;
}

/*.pagination {
  text-align: center;
  margin-top: 40px;
  color: #6b4e19;
  font-weight: bold;
  padding: 0 20px;
}*/

.cf-turnstile-container {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Contact Page Styles */
.contact-page {
  background: linear-gradient(to bottom, #fffaf2, #f4e8d8);
  min-height: 70vh;
  padding: 40px 20px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-page-title {
  text-align: center;
  font-size: clamp(1.4em, 3.5vw, 1.8em);
  color: #6b4e19;
  margin-bottom: 40px;
  font-weight: bold;
  border-bottom: 3px solid #d2a756;
  padding-bottom: 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  background-color: rgba(255, 248, 236, 0.7);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #d2a756;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-subtitle {
  font-size: clamp(1.1em, 2.5vw, 1.3em);
  color: #6b4e19;
  margin: 0 0 15px 0;
  font-weight: 600;
  text-align: center;
}

.phone-section {
  text-align: center;
}

.phone-numbers-page {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.phone-link-page {
  color: #b0760c;
  font-size: clamp(1.2em, 2.8vw, 1.4em);
  font-weight: bold;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 12px;
  background-color: rgba(176, 118, 12, 0.1);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  border: 2px solid transparent;
}

.phone-link-page:hover {
  background-color: #b0760c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(176, 118, 12, 0.3);
  border-color: #d2a756;
}

.phone-icon {
  font-size: 1.2em;
}

.phone-separator-page {
  color: #6b4e19;
  font-size: 1.5em;
  font-weight: bold;
}

.service-area {
  text-align: center;
}

.service-area-text {
  font-size: clamp(1em, 2.2vw, 1.2em);
  color: #6b4e19;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.area-icon {
  font-size: 1.3em;
}

.social-section {
  text-align: center;
}

.social-title {
  font-size: clamp(1em, 2.2vw, 1.2em);
  color: #6b4e19;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-links-page {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-page {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1em, 2vw, 1.1em);
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  gap: 10px;
}

.facebook-link-page {
  color: #1877f2;
  background-color: rgba(24, 119, 242, 0.1);
  border: 2px solid rgba(24, 119, 242, 0.2);
}

.facebook-link-page:hover {
  background-color: #1877f2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.line-link-page {
  color: #06c755;
  background-color: rgba(6, 199, 85, 0.1);
  border: 2px solid rgba(6, 199, 85, 0.2);
}

.line-link-page:hover {
  background-color: #06c755;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.social-icon-page {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hours-section {
  text-align: center;
}

.hours-title {
  font-size: clamp(1em, 2.2vw, 1.2em);
  color: #6b4e19;
  margin-bottom: 15px;
  font-weight: 600;
}

.hours-text {
  font-size: clamp(0.95em, 2vw, 1.1em);
  color: #5c3b0c;
  margin: 0;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.time-icon {
  font-size: 1.3em;
  margin-bottom: 5px;
}

/* Utility Classes */
.mobile-hidden {
  display: none;
}

.desktop-hidden {
  display: block;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  header {
    padding: 8px 15px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .logo-container {
    justify-content: flex-start;
    width: 100%;
  }
  
  .logo-container img {
    height: 35px;
    margin-right: 8px;
  }
  
  .logo-container span {
    font-size: 0.9em;
  }
  
  .menu {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  nav.nav-menu {
    width: 100%;
    order: 3;
  }
  
  .hero {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
    text-align: center;
  }
  
  .hero .text,
  .hero .image {
    min-width: auto;
    width: 100%;
  }
  
  .contact {
    padding: 20px 15px;
  }
  
  .phone-numbers {
    flex-direction: column;
    gap: 15px;
  }
  
  .phone-separator {
    display: none;
  }
  
  .social-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .social-link {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }
  
  .contact-page {
    padding: 20px 15px;
  }
  
  .contact-container {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .contact-info {
    gap: 20px;
  }
  
  .contact-item {
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .phone-numbers-page {
    flex-direction: column;
    gap: 15px;
  }
  
  .phone-separator-page {
    display: none;
  }
  
  .social-links-page {
    flex-direction: column;
    gap: 15px;
  }
  
  .social-link-page {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .service-area-text {
    flex-direction: column;
    gap: 5px;
  }
}

/* Medium Mobile Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  header {
    padding: 12px 20px;
  }
  
  .menu {
    display: flex;
  }
  
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  
  .hero .text {
    margin-bottom: 20px;
  }
  
  .contact {
    padding: 25px 20px;
  }
  
  .phone-numbers {
    gap: 15px;
  }
  
  .social-links {
    gap: 15px;
  }
  
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .contact-page {
    padding: 30px 20px;
  }
  
  .contact-container {
    padding: 35px 25px;
  }
  
  .contact-info {
    gap: 25px;
  }
  
  .phone-numbers-page {
    gap: 20px;
  }
  
  .social-links-page {
    gap: 18px;
  }
}

/* Large Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 40px 30px;
  }
  
  .portfolio-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .mobile-hidden {
    display: block;
  }
  
  .desktop-hidden {
    display: none;
  }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
  .hero {
    padding: 50px 40px;
  }
  
  .portfolio-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .mobile-hidden {
    display: block;
  }
  
  .desktop-hidden {
    display: none;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  nav.nav-menu {
    display: none;
    flex-direction: column;
    background-color: #fff8ec;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    gap: 5px;
  }

  header.menu-active nav.nav-menu {
    display: flex;
  }

  nav.nav-menu a {
    font-size: 1em;
    padding: 12px 16px;
    color: #5c3b0c;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
  }

  nav.nav-menu a:hover {
    background-color: rgba(210, 167, 86, 0.2);
    color: #b0760c;
  }
}

/* Mobile Menu Animation */
header.menu-active .menu span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

header.menu-active .menu span:nth-child(2) {
  opacity: 0;
}

header.menu-active .menu span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Focus and Accessibility */
a:focus,
button:focus {
  outline: 2px solid #d2a756;
  outline-offset: 2px;
}

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

/* Loading Animation */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Print Styles */
@media print {
  header,
  .contact,
  .footer {
    display: none;
  }
  
  .hero,
  .portfolio-gallery,
  .blog {
    padding: 20px 0;
  }
  
  .hero .image img,
  .portfolio-gallery img {
    max-width: 100%;
    height: auto;
  }
} 