.courses-title {
    font-family: "Bebas Neue", Impact, sans-serif;
    letter-spacing: .6px;
}

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

html {
    overflow-y: scroll;
}

body {
    font-family: 'League Spartan', sans-serif;
    line-height: 1.6;
}

/* 상단 알림 바 */
.top-banner {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.fire-icon {
    margin-right: 8px;
}

/* 네비게이션 */
.navbar {
    background: #000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
}

.logo {
    height: 30px;
    width: auto;
}

.logo-subtitle {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color .3s;
    cursor: pointer;
}

.nav-item:hover {
    color: #B8960B;
}

.nav-item.active {
    color: #B8960B;
}

.nav-btn {
    border: 2px solid #B8960B;
    padding: 8px 16px;
    border-radius: 4px;
    color: #B8960B;
}

.nav-btn:hover {
    background: #B8960B;
    color: #fff;
}

.buy-now-btn {
  background: linear-gradient(135deg, #FF8C00, #FF7F50);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  transition: transform .3s;
  margin-top: 40px;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
}

/* Mobile Book Now Button */
.mobile-book-btn {
    display: none;
    background: transparent;
    color: #fff;
    border: 2px solid #B8960B;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 10px;
}

.mobile-book-btn:hover {
    background: #B8960B;
    color: #fff;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* 메인 콘텐츠(패스 페이지) */
.main-content {
    background: #fff;
    padding: 150px 20px 80px;
    display: none;
}

.main-content.active {
    display: block;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-family: "Bebas Neue", Impact, sans-serif;
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 20px;
}

.subtitle {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 40px;
}

/* 탭 */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
}

.tab-btn:hover {
    background: #f5f5f5;
}

.tab-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block !important;
}

.carousel-wrapper {
  background: #111;
  color: white;
  padding: 40px 20px;
}

.carousel-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.arrow.left::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-left: 8px solid white;
  border-bottom: 8px solid white;
  transform: rotate(45deg);
  margin: auto;
}

.arrow.right::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-right: 8px solid white;
  border-bottom: 8px solid white;
  transform: rotate(-45deg);
  margin: auto;
}

.arrow.left {
  left: 30px;
}

.arrow.right {
  right: 30px;
}

.slides {
    display: flex;
    transition: transform 0.3s ease-in-out;
    padding-bottom: 50px;
}

.slides img {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    height: 400px;
    object-fit: cover;
    padding: 0 2px;
    box-sizing: border-box;
}

/* 카드/슬라이더 */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    display: flex;
    transition: transform .3s ease;
    gap: 40px;
}

.slider-card {
    flex: 0 0 calc(33.333% - 27px);
    min-width: 350px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(255, 255, 255, .9);
    border: none;
    border-radius: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    transition: all .3s ease;
}

.slider-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.slider-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .3s ease;
}

.indicator.active {
    background: #fff;
}

.cards-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.card-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-badge {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    color: #fff;
    padding: 12px 32px;
    border-radius: 0;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(255, 140, 0, .3);
    z-index: 10;
    margin-bottom: -25px;
}

.golf-card {
    background: #fff;
    border-radius: 0;
    padding: 35px 30px 30px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    border: 2px solid #eee;
    transition: all .3s ease;
}

.golf-card:hover {
    border-color: #FF8C00;
    transform: translateY(-5px);
}

.golf-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.golf-card-content p {
  margin: 6px 0;
}

.club-name {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 15px;
}

.pass-type {
    color: #666;
    font-size: 16px;
    margin: 15px 0 5px;
}

.price {
    color: #333;
    font-size: 64px;
    font-weight: bold;
    margin: 5px 0;
    line-height: 1;
}

.per-unit {
    color: #333;
    font-size: 18px;
    margin-left: 8px;
    font-weight: normal;
}

.features {
    text-align: left;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.check-icon {
    color: #00C851;
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-section {
    margin-top: 50px;
    text-align: center;
}

.book-now-btn {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    color: #fff;
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, .3);
    transition: all .3s ease;
    display: inline-block;
    cursor: pointer;
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, .4);
}

/* Hero Page */
.hero-page {
    display: none;
    background: #fff;
    color: #333;
    min-height: 100vh;
    padding: 0;
}

.hero-page.active {
    display: block;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 85dvh;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    padding: 0 16px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .75);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.10) 50%,
            rgba(0, 0, 0, 0.35) 100%);
    bottom: 12dvh;
}

.hero-title {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.35;
    opacity: .95;
}

/* Golf Courses */
.courses-page {
    display: none;
    background: #fff;
    color: #333;
    min-height: 100vh;
    padding: 0;
    padding-top: 56px;
}

.courses-page.active {
    display: block;
}

.courses-hero {
    text-align: center;
    margin-bottom: 0;
    margin-top: -56px;
}

.courses-hero-video {
    position: relative;
    width: 100%;
    height: 85dvh;
    overflow: hidden;
    margin-bottom: 0;
}

.courses-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.courses-hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    padding: 0 16px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .75);
    bottom: 12dvh;
}

.courses-title {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.1;
}

.courses-subtitle {
    font-size: clamp(18px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.35;
    opacity: .95;
}

@font-face {
  font-family: "Avenir LT W01";
  src: url("https://static.parastorage.com/fonts/v2/af36905f-3c92-4ef9-b0c1-f91432f16ac1/v1/avenir-lt-w01_35-light1475496.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir LT W01";
  src: url("https://static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w01_85-heavy1475544.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

.courses-content {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 20px;
    background: #fff;
    font-family: "Avenir LT W01", Arial, sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: rgb(35, 34, 34); 
    text-align: center;
}

.courses-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.courses-image img,
.courses-image video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .3s ease;
}

.courses-image:hover img,
.courses-image:hover video {
    transform: scale(1.05);
}

.courses-info {
    padding: 20px;
    background: #fff;
}

.courses-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #515151;
    border-bottom: 3px solid #515151;
    padding-bottom: 10px;
    display: inline-block;
}

.courses-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.courses-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.courses-features li {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    color: #333;
}

.courses-features li:before {
    content: "✓";
    margin-right: 12px;
    font-size: 16px;
    color: #00C851;
    flex-shrink: 0;
}

.courses-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.courses-btn {
    padding: 15px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s ease;
    cursor: pointer;
}

.courses-btn.primary {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    color: #fff;
    border: none;
}

.courses-btn.secondary {
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
}

.courses-btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Trips */
.trips-page {
    display: none;
    background: #fff;
    min-height: 100vh;
}

.trips-page.active {
    display: block;
}

.trips-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url('https://images.pexels.com/photos/1325735/pexels-photo-1325735.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.trips-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.trips-title {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}

.trips-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
}

.trips-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.trips-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trips-section {
    margin-bottom: 60px;
}

.trips-section h2 {
    font-size: 32px;
    color: #FF8C00;
    margin-bottom: 30px;
    border-bottom: 3px solid #FF8C00;
    padding-bottom: 10px;
    display: inline-block;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.trips-card {
    background: #fff;
    border: 2px solid #eee;
    padding: 30px;
    text-align: center;
    transition: all .3s ease;
}

.trips-card:hover {
    border-color: #FF8C00;
    transform: translateY(-5px);
}

.trips-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.trips-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trips-price {
    font-size: 32px;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 20px;
}

.trips-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.trips-features li {
    padding: 8px 0;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.trips-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00C851;
    font-weight: bold;
}

.trips-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.trips-cta h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.trips-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.trips-btn {
    background: linear-gradient(135deg, #FF8C00, #FF7F50);
    color: #fff;
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all .3s ease;
    display: inline-block;
    cursor: pointer;
}

.trips-btn:hover {
    transform: translateY(-2px);
}


/* KGOLF Simulator Technology Section */
.kgtech-section {
    display: none;
    padding: 80px 20px;
    background: #fff;
}

.kgtech-section.active {
    display: block;
}

.kgtech-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.kgtech-eyebrow {
    font-size: 16px;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 10px;
}

.kgtech-title {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.kgtech-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.kgtech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.kgtech-card {
    background: #f8f8f8;
    padding: 30px;
    border: 1px solid #eee;
    transition: all .3s ease;
}

.kgtech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.kgtech-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.kgtech-card p {
    color: #666;
    margin-bottom: 20px;
}

.kgtech-card ul {
    list-style: none;
    padding-left: 20px;
}

.kgtech-card li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

.kgtech-card li:before {
    content: "✓";
    color: #00C851;
    position: absolute;
    left: -20px;
}

.kgtech-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    border: 1px solid #eee;
}

.kgtech-split-text h3 {
    font-size: 32px;
    margin-bottom: 5px;
    color: #333;
}

.kgtech-split-text p {
    color: #666;
    margin-bottom: 20px;
}

.kgtech-bullets {
    list-style: none;
    padding-left: 20px;
}

.kgtech-bullets li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

.kgtech-bullets li:before {
    content: "✓";
    color: #00C851;
    position: absolute;
    left: -20px;
}

.kgtech-split-media img {
    width: 100%;
    height: auto;
}

.kgtech-specs {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
}

.kgtech-specs h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.kgtech-specgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.kgtech-specgrid h5 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.kgtech-specgrid ul {
    list-style: none;
}

.kgtech-specgrid li {
    color: #666;
    margin-bottom: 10px;
}

.kgtech-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kgtech-cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.kgtech-cta p {
    color: #666;
    margin-bottom: 30px;
}

.kgtech-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.kgtech-btn {
    background: transparent;
    color: #B8960B;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s ease;
    border: 2px solid #B8960B;
}

.kgtech-btn:hover {
    transform: translateY(-2px);
}

.kgtech-btn--ghost {
    background: transparent;
    border: 2px solid #B8960B;
    color: #B8960B;
}

.kgtech-btn--ghost:hover {
    background: #B8960B;
    color: #fff;
}

.spin-track-image {
    max-width: 450px;
    margin: 10px 0;
}

/* .site-footer {
    background: #0b0b0b;
    color: #cfcfcf;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-family: 'League Spartan', sans-serif;
} */

.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 120px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 17px;
  /* letter-spacing: 1px; */
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

/* Footer Contact List with Icons */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 15px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
  stroke-width: 2;
}

.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: #4A9EFF;
  text-decoration: underline;
}

.footer-contact-item:hover svg {
  color: #4A9EFF;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Map Preview Tooltip */
.footer-map-item {
  position: relative;
}

.map-preview {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 10px;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.footer-map-item:hover .map-preview {
  display: block;
}

.map-preview iframe {
  display: block;
  border-radius: 4px;
}

.newsletter-form {
  display: flex;
  margin: 15px 0;
}

.newsletter-form input {
  flex: 1;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.newsletter-form button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
  cursor: pointer;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* 모바일 footer 반응형 */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input {
    width: 100%;
    text-align: center;
  }

  .social-icons {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}


.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.site-footer__brand {
    font-weight: 500;
    font-size: 18px;
    opacity: .9;
    color: #fff;
}

.site-footer__copy {
    font-weight: 500;
    font-size: 14px;
    opacity: .9;
    color: #bbb;
}

.site-footer a {
    color: #cfcfcf;
    text-decoration: none;
    opacity: .9;
    transition: opacity .2s ease;
}

.site-footer a:hover {
    opacity: 1;
    color: #fff;
}

.image-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.image-row img {
    max-width: 45%;
    height: auto;
}

.swing-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 60px 10%;
  background: #111;
  color: white;
  min-height: 500px;
  box-sizing: border-box;
}

.swing-text {
  flex: 1;
  max-width: 500px;
}

.swing-text h2 {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.swing-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.swing-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.swing-images {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swing-images img {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.swing-images img:first-child {
  z-index: 1;
}

.swing-images img:nth-child(2) {
  margin-left: -200px;
  z-index: 2;
}



/* 모바일 */
@media (max-width:768px) {

    .top-banner {
        font-size: 14px;
        padding: 10px 0;
    }

    .navbar {
        top: 0;
    }

    .mobile-book-btn {
        display: block;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        height: 20px !important;
    }

    .logo-subtitle {
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
    }

    .logo-container {
        gap: 2px !important;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0%);
        display: flex;
    }

    .nav-item {
        color: #fff;
        font-size: 24px;
        margin: 20px 0;
    }

    .main-content {
        padding: 120px 20px 60px;
    }

    .courses-hero {
        margin-top: -56px;
    }

    .slider-card {
        flex: 0 0 100%;
        min-width: 300px;
    }

    .cards-container {
        flex-direction: column;
        gap: 30px;
    }

    .main-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .golf-card {
        width: 90%;
    }

    .price {
        font-size: 52px;
    }

    .courses-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .trips-title {
        font-size: 36px;
    }

    .trips-subtitle {
        font-size: 20px;
    }

    .courses-hero-video {
        height: 72dvh;
    }

    .courses-hero-text {
        padding-bottom: 10dvh;
    }

    .carousel-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .slides img {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
    }

    .arrow {
        width: 50px;
        height: 50px;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }

    .arrow.left::before,
    .arrow.right::before {
        width: 25px;
        height: 25px;
        border-width: 5px;
    }

    .swing-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 5%;
        gap: 30px;
    }

    .swing-text {
        max-width: 100%;
    }

    .swing-text h1 {
        font-size: 32px;
    }

    .swing-images {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .swing-images img {
        max-width: 80%;
        margin-left: 0 !important;
    }

    .swing-images img:nth-child(2) {
        margin-left: 0 !important;
    }

     .kgtech-section {
        padding: 120px 20px 60px;
    }

    .kgtech-hero {
        margin-bottom: 40px;
    }

    .kgtech-title {
        font-size: 32px;
    }

    .kgtech-subtitle {
        font-size: 16px;
    }

    .kgtech-highlights {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .kgtech-split {
        display: grid; 
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
        text-align: center;
        margin: 0 auto 30px;
        border: 1px solid #eee;
    }
    
    /* .kgtech-card {
    background: #f8f8f8;
    padding: 30px;
    border: 1px solid #eee;
    transition: all .3s ease;
} */

    .kgtech-split-text {
         background: #f8f8f8;
         border: 1px solid #eee;
         padding: 30px;
            box-sizing: border-box;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
            margin: 0;
        order: 1;
    }
    
    .kgtech-split-media {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .kgtech-split-text h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .kgtech-split-text p {
        font-size: 15px;
    }
    
    .kgtech-split-media img {
        width: 100%;
        max-width: 100%;
        height: auto;
        /* display: block; */
    }
    
    .spin-track-image {
        max-width: 100%;
        margin: 0; 
    }

    .kgtech-bullets li {
        font-size: 15px;
        position: relative;
        padding-left: 20px;
        text-align: left;
    }

    .kgtech-bullets li:before {
        content: "✓";
        color: #00C851;
        position: relative;
        left: -20px;
    }

    .site-footer__inner {
        padding: 24px 16px;
        gap: 4px;
    }

    .site-footer__brand,
    .site-footer__copy {
        font-size: 13px;
    }

    .site-footer__inner {  
        padding: 24px 16px;
        gap: 4px;
    }

    .site-footer__brand,
    .site-footer__copy {  
        font-size: 13px;
    }
}

/* Location Page Styles */
.location-section {
    background: #0a0a0a;
    padding-top: 120px;
    min-height: 100vh;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-container {
        padding: 40px 20px;
    }
    
    .location-section {
        padding-top: 80px;
    }
}
