:root{--build-id:"c35b2720-4a8c-4248-b611-76f8faf0c798";}
/* pluno77.space - 프르노고하77 해외여행 사이트 */
/* 선택: L18, C33, T09, B14, N08, K15, S07, H12, F4, CS15 */

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

:root {
  --primary: #8b4513;
  --secondary: #d2691e;
  --accent: #cd853f;
  --bg: #fff8dc;
  --text: #3e2723;
  --border: #deb887;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

header {
  background: var(--primary);
  color: white;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: white;
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

nav a:hover,
nav a:focus {
  border-bottom-color: var(--accent);
  outline: none;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
  min-height: 60vh;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.625rem);
  margin: 2rem 0 1rem;
  color: var(--secondary);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  margin: 1.5rem 0 0.8rem;
  color: var(--text);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 4rem 5%;
  text-align: center;
  margin: -2rem -5% 3rem;
}

.hero h1 {
  color: white;
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card-overlay {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-overlay:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-overlay img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-top: 0;
}

.btn-soft {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-soft:hover,
.btn-soft:focus {
  background: var(--primary);
  transform: scale(1.05);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.section-alt {
  background: white;
  padding: 3rem 5%;
  margin: 3rem -5%;
  border-radius: 8px;
}

.alternating-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.alternating-section:nth-child(even) {
  direction: rtl;
}

.alternating-section:nth-child(even) > * {
  direction: ltr;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

footer {
  background: var(--text);
  color: white;
  padding: 2rem 5%;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer-section a:hover,
.footer-section a:focus {
  color: var(--accent);
  outline: none;
}

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

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

  .grid-asymmetric > :nth-child(3n) {
    grid-column: span 2;
  }

  .alternating-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  nav ul {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 2rem 5%;
  }
}