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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.5;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: #A7988D;
  display: block;
  margin-bottom: 8px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Footer */
footer {
  background-color: #1A1A1A;
  color: white;
  padding: 64px 32px 32px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 32px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-logo p {
  font-size: 0.8rem;
  color: #A7988D;
  letter-spacing: 1px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-column h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #A7988D;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #A7988D;
}

.footer-column p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #A7988D;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #999;
  font-size: 0.8rem;
}

/* Media Queries */
@media screen and (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
  
  .footer-logo {
    width: 25%;
    margin-bottom: 0;
  }
  
  .footer-links {
    width: 75%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 0.75rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}