:root {
  --bg-color: #F9F8F6;
  --card-bg: #FFFFFF;
  --primary-color: #869E81;
  --primary-hover: #6c8268;
  --text-main: #2C3539;
  --text-muted: #666666;
  --font-main: 'Urbanist', sans-serif;
  --font-accent: 'Pacifico', cursive;
  --font-head: 'Miniver', cursive;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn {
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--text-main);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-color);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.brand h1 {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--text-main);
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon {
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-icon:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-hero {
  min-height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/contact/Back\ Ground.png') center/cover no-repeat;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  color: #fff;
}

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  color: #d3caad;
  letter-spacing: 2px;
}

.review-section {
  padding: 5rem 5%;
  display: flex;
  justify-content: center;
}

.review-container {
  background-color: var(--card-bg);
  padding: 4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.review-header {
  margin-bottom: 3rem;
}

.review-header h2 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.review-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-main);
  background-color: #fafafa;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(134, 158, 129, 0.1);
}

.form-textarea {
  resize: vertical;
}

.submit-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
  max-width: 250px;
  margin: 1rem auto 0;
}

.map-section {
  width: 100%;
  height: 500px;
}

.contact-map {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

.footer {
  background: linear-gradient(rgba(30, 30, 30, 0.9), rgba(30, 30, 30, 0.9)), url('../image/home/footer.png') center/cover;
  color: #fff;
  padding: 4rem 5% 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-col h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-info p, .hours-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #ccc;
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--primary-color);
  width: 25px;
  font-size: 1.1rem;
}

.hours-info p {
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.newsletter-text {
  color: #ccc;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    padding: 2rem 0;
    flex-direction: column;
    gap: 2rem;
  }

  #menu-toggle-checkbox:checked ~ .nav-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .header-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .review-container {
    padding: 2rem;
  }
}