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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: #2c1810;
  background-color: #EDECE3;
}

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

/* Header Styles */
.header {
  background: #EDECE3;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo svg {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-text h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #5d4e37;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

.brand-text p {
  font-size: 0.9rem;
  color: #8b5a2b;
  font-style: italic;
}

/* Contact Section */
.contact {
  background: #EDECE3;
  padding: 120px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #5d4e37;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #8b5a2b 0%, #a0522d 100%);
  border-radius: 2px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  background: #f8f6f1;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #EDECE3;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-item:hover {
  background: #e0ddd1;
  transform: translateX(5px);
}

.contact-item svg {
  color: #8b5a2b;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 1.1rem;
  color: #5d4e37;
  font-weight: 500;
}

.social-media {
  background: #f8f6f1;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-media h3 {
  font-size: 1.5rem;
  color: #5d4e37;
  margin-bottom: 1.5rem;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-link.tiktok {
  background: #000;
  color: white;
}

.social-link.snapchat {
  background: #fffc00;
  color: #000;
}

.social-link.pinterest {
  background: #bd081c;
  color: white;
}

.social-link.twitter {
  background: #000;
  color: white;
}

.social-link.youtube {
  background: #ff0000;
  color: white;
}

.social-link.linkedin {
  background: #0077b5;
  color: white;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #5d4e37;
  color: #EDECE3;
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact {
    padding: 140px 20px 60px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .brand-text h1 {
    font-size: 1.5rem;
  }
  
  .brand-text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .contact-info,
  .social-media {
    padding: 1.5rem;
  }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
  .contact-item,
  .social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
