/* ===== Amorinne Static Website Styles ===== */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lato:wght@300;400;500;600;700&family=Noto+Serif+KR:wght@300;400;500;600;700&display=swap');

/* CSS Variables (Design Tokens) */
:root {
  --primary: oklch(0.3 0.05 40);
  --primary-foreground: oklch(1 0 0);
  --background: oklch(0.99 0 0);
  --foreground: oklch(0.2 0.01 40);
  --card: oklch(0.99 0 0);
  --card-foreground: oklch(0.2 0.01 40);
  --muted: oklch(0.92 0.01 40);
  --muted-foreground: oklch(0.5 0.01 40);
  --accent: oklch(0.88 0.02 50);
  --accent-foreground: oklch(0.2 0.01 40);
  --border: oklch(0.95 0.01 40);
  --ring: oklch(0.3 0.05 40);
  --radius: 0.5rem;
  --font-serif: "Playfair Display", "Noto Serif KR", serif;
  --font-sans: "Lato", "Noto Sans KR", sans-serif;
  --gold: #a89968;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo h1 {
  font-family: "Noto Serif KR", serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  .hero-content h2 {
    font-size: 4.5rem;
  }
  .hero-content p {
    font-size: 1.25rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  opacity: 0.9;
}

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

.btn-white:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--accent);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ===== Section ===== */
.section {
  padding: 6rem 0;
}

.section-accent {
  background: color-mix(in oklch, var(--accent) 30%, transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== Service Tabs ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.tab-btn:hover {
  color: var(--foreground);
}

.tab-btn.active {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

/* Sub Tabs */
.sub-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.sub-tab-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  background: #e5e7eb;
  color: #374151;
}

.sub-tab-btn:hover {
  background: #d1d5db;
}

.sub-tab-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Service Grid */
.service-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Cards ===== */
.card {
  padding: 1rem;
  background: #f9fafb;
  border-radius: var(--radius);
  transition: background 0.2s;
  cursor: pointer;
}

.card:hover {
  background: #f3f4f6;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.card-title {
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.card-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.card-price {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 0.5rem;
}

/* Image card */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.card-img-wrapper img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border-radius: calc(var(--radius) - 2px);
}

.card-img-wrapper:hover .card-img-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.card-img-overlay span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-img-wrapper:hover .card-img-overlay span {
  opacity: 1;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item .aspect-square {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item p {
  font-size: 10px;
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  line-height: 1.2;
}

/* ===== Service Image ===== */
.service-image {
  position: relative;
  height: 24rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.service-image:hover .service-image-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.service-image-text {
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  text-align: center;
}

.service-image:hover .service-image-text {
  opacity: 1;
}

.service-image-text p:first-child {
  font-size: 1.125rem;
  font-weight: 600;
}

.service-image-text p:last-child {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== Price Table ===== */
.price-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.price-table thead tr {
  border-bottom: 2px solid var(--primary);
}

.price-table th {
  text-align: left;
  padding: 0.5rem;
}

.price-table th:not(:first-child) {
  text-align: right;
}

.price-table td {
  padding: 0.5rem;
}

.price-table td:not(:first-child) {
  text-align: right;
}

.price-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

/* ===== Check List ===== */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.check-mark {
  color: var(--primary);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.bullet {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-image {
  position: relative;
  height: 24rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-card a {
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.footer p {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.hidden {
  display: none;
}

.modal {
  background: white;
  border-radius: var(--radius);
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-header h3 {
  font-weight: 600;
  font-size: 1.125rem;
}

.modal-close {
  font-size: 1.5rem;
  color: #6b7280;
  transition: color 0.2s;
  line-height: 1;
  padding: 0.25rem;
}

.modal-close:hover {
  color: #374151;
}

.modal-body {
  padding: 1rem;
}

/* ===== Reservation Form ===== */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: white;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--ring) 20%, transparent);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
}

.form-section {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.form-section h3 {
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
}

/* Tooltip */
.tooltip-trigger {
  position: relative;
}

.tooltip-trigger .tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  background: #1f2937;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 50;
  display: none;
  pointer-events: none;
}

.tooltip-trigger:hover .tooltip {
  display: block;
}

/* Price Display */
.price-display {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.price-display .label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e40af;
}

.price-display .amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e40af;
}

/* Form buttons */
.form-buttons {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
}

.form-buttons .btn {
  flex: 1;
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== Tab Content ===== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.6s ease-out;
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Select sub-option */
.sub-select {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  accent-color: var(--primary);
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 2.5rem;
  }
}

<!-- ===== Notice Section ===== -->
<section id="notice" class="section">
  <div class="container">
    <div class="section-title">
      <h2>NOTICE</h2>
      <p>이용 전 꼭 확인해주세요</p>
    </div>

    <div class="notice-grid">
      <div class="notice-card">
        <img src="images/notice1.jpg" alt="아모린느 공지사항 1" />
      </div>
      <div class="notice-card">
        <img src="images/notice2.jpg" alt="아모린느 공지사항 2" />
      </div>
    </div>
  </div>
</section>
