@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
  word-break: keep-all;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Noto Sans KR", serif;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
header.scrolled .logo {
  color: #1a2a40;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.05em;
}
header .logo span {
  color: #c5a059;
}

.hero {
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-align: center;
}
.hero .hero-content {
  width: 100%;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.5s;
}
.hero .slogan {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #c5a059;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
.hero .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .hero .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.btn {
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.btn.btn-primary {
  background-color: #c5a059;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #ae873d;
  transform: translateY(-3px);
}
.btn.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.btn.btn-outline:hover {
  background-color: #ffffff;
  color: #111111;
  transform: translateY(-3px);
}

.services {
  padding: 100px 20px;
  background-color: #f9f9f9;
}
@media (max-width: 768px) {
  .services {
    padding: 60px 20px;
  }
}
.services .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.services .section-title h2 {
  font-size: 2.5rem;
  color: #1a2a40;
  margin-bottom: 10px;
}
.services .section-title .subtitle {
  color: #666;
  font-size: 1.1rem;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: 1fr;
  }
}
.services .service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(197, 160, 89, 0.1);
  position: relative;
  overflow: hidden;
}
.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.services .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(197, 160, 89, 0.5);
}
.services .service-card:hover::before {
  opacity: 1;
}
.services .service-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}
.services .service-card .icon-box {
  font-size: 3rem;
  color: #c5a059;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.services .service-card h3 {
  font-size: 1.6rem;
  color: #1a2a40;
  margin-bottom: 15px;
}
.services .service-card p {
  color: #666;
  margin-bottom: 20px;
}
.services .service-card .features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 500;
}
.services .service-card .features li::before {
  content: "•";
  color: #c5a059;
  font-weight: bold;
}

.location-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px;
  color: #ffffff;
  background: linear-gradient(rgba(17, 26, 40, 0.6), rgba(10, 15, 25, 0.8)), url("../assets/daegu_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.location-section.dongtan {
  background: linear-gradient(rgba(10, 15, 25, 0.7), rgba(5, 8, 15, 0.8)), url("../assets/dongtan_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.location-section .content-box {
  max-width: 900px;
  margin: 0 auto;
}
.location-section .region-badge {
  display: inline-block;
  border: 2px solid #c5a059;
  color: #c5a059;
  padding: 15px 50px;
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
.location-section h3 {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .location-section h3 {
    font-size: 1.5rem;
  }
}
.location-section .highlight-text p {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .location-section .highlight-text p {
    font-size: 2rem;
  }
}

.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
@media (max-width: 768px) {
  .floating-btns {
    bottom: 20px;
    right: 20px;
  }
}
.floating-btns .float-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.8rem;
  font-weight: bold;
}
.floating-btns .float-btn i {
  font-size: 1.5rem;
  margin-bottom: 2px;
}
.floating-btns .float-btn span {
  font-size: 0.65rem;
  letter-spacing: -0.5px;
}
.floating-btns .float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.floating-btns .float-btn.kakao {
  background-color: #FEE500;
  color: #3C1E1E;
}
.floating-btns .float-btn.call {
  background-color: #c5a059;
}

footer {
  padding: 40px 20px;
  background-color: #0d1520;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.85rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=main.css.map */
