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

:root {
  --primary-color: #8B4513;
  --secondary-color: #D2691E;
  --accent-color: #CD853F;
  --background-color: #FFF8E7;
  --text-color: #3A3A3A;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Loading Screen */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.5s ease-out;
}

.loading-logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.loading-text {
  color: white;
  font-size: 18px;
  letter-spacing: 2px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.content {
  opacity: 0;
  transition: opacity 0.5s ease-in;
  padding: 20px;
  max-width: 100%;
}

/* Header Styles */
header {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 30px;
}

.logo-container {
  margin-bottom: 5px;
}

.logo {
  width: 240px;
  height: auto;
}

h1 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.tagline {
  color: var(--secondary-color);
  font-style: italic;
  font-size: 1rem;
}

/* Section Styles */
section {
  margin-bottom: 40px;
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

/* Services Styles */
.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  justify-content: center;
}

.service-item {
  text-align: center;
  padding: 15px 5px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-item i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-item h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 1rem;
}

.service-item p {
  font-size: 0.8rem;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hours Styles */
.hours-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.day {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--accent-color);
}

.day-name {
  font-weight: 600;
}

.day-hours {
  color: var(--primary-color);
}

.status-indicator {
  margin-left: 10px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.open {
  color: #2ecc71;
}

.closed {
  color: #e74c3c;
}

.current-day {
  background-color: rgba(139, 69, 19, 0.1);
}

/* Contact Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 30px;
  text-align: center;
}

.contact-item p {
  margin: 0;
}

.phone-link, .location-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover, .location-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #A0522D;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #5D2906;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 20px 0;
  color: var(--primary-color);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .content {
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .service-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service-item {
    padding: 15px;
  }
  
  .service-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 0.9rem;
  }
}