@charset "utf-8";

   :root {
            --primary: #0a0a0a;
            --accent: #d4af37; /* Gold */
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Pretendard', sans-serif; background: var(--white); color: var(--primary); overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        li { list-style: none; }

        /* 1. 모바일 가로 흔들림 방지 (핵심 수정) */
        html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
        background-color: var(--dark);
        color: #ffffff;
        font-family: 'Noto Sans KR', sans-serif;
        margin: 0;
        padding: 0;
        }

        /* --- Navigation --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            display: flex; justify-content: space-between; align-items: center;
            padding: 30px 6%; transition: var(--transition);
        }
        header.scrolled { background: rgba(0,0,0,0.95); padding: 15px 6%; backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.1); }
        .logo { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: 4px; z-index: 1001; }
        
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: #fff; font-weight: 600; font-size:1.26rem; transition: 0.3s; opacity: 0.8; }
        .nav-links a:hover { opacity: 1; color: var(--accent); }

        /* --- Hamburger Animation --- */
        .hamburger {
            width: 30px; height: 21px; position: relative; cursor: pointer;
            display: none; z-index: 1001; flex-direction: column; justify-content: space-between;
        }
        .hamburger span { display: block; width: 100%; height: 2px; background: #fff; transition: var(--transition); }
        .hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

        /* --- Hero Slider --- */
        .hero { height: 100vh; background: #000; }
        .swiper { width: 100%; height: 100%; }
        .swiper-slide { position: relative; }
        .swiper-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
        .hero-text {
            position: absolute; inset: 0; display: flex; flex-direction: column;
            justify-content: center; padding: 0 10%; color: #fff;
        }
        .hero-text h2 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 900; line-height: 1; margin-bottom: 20px; }
        .hero-text p { font-size: 1.25rem; border-left: 4px solid var(--accent); padding-left: 25px; max-width: 600px; opacity: 0.9; }

        /* --- Section Common --- */
        section { padding: 140px 6%; }
        .sec-header { text-align: center; margin-bottom: 80px; }
        .sec-header h3 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
        .sec-header .bar { width: 60px; height: 4px; background: var(--accent); margin: 0 auto; }

        /* --- 1. Company Intro --- */
        #about { background: var(--light-bg); display: flex; align-items: center; gap: 80px; }
        .about-img { flex: 1; border-radius: 30px; overflow: hidden; height: 500px; }
        .about-img img { width: 100%; height: 100%; object-fit: cover; }
        .about-content { flex: 1; }
        .about-content h4 { font-size: 2.2rem; margin-bottom: 25px; line-height: 1.3; }
        .about-content p { color: #666; line-height: 1.8; margin-bottom: 30px; font-size: 1.1rem; }

        /* --- 2. Model & Price --- */
        .model-card { background: #fff; border-radius: 25px; overflow: hidden; transition: var(--transition); border: 1px solid #eee; }
        .model-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
        .price-tag { display: inline-block; background: var(--primary); color: var(--accent); padding: 5px 15px; border-radius: 5px; font-weight: 700; margin-top: 15px; }
        .model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

        /* --- 3. Experience (Youtube) --- */
        #experience { background: var(--primary); color: #fff; }
        .yt-wrapper { 
            position: relative; width: 100%; max-width: 1200px; margin: 0 auto;
            aspect-ratio: 16/9; border-radius: 30px; overflow: hidden;
            box-shadow: 0 50px 100px rgba(0,0,0,0.5);
        }
        .yt-wrapper iframe { width: 100%; height: 100%; border: none; }

        /* --- 4. Visit & Contact --- */
        #visit { background: #fff; }
        .visit-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
        .map-area { border-radius: 30px; overflow: hidden; height: 550px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); position: relative; }
        .map-area img { width: 100%; height: 100%; object-fit: cover; }
        
        .contact-box { background: var(--light-bg); padding: 50px; border-radius: 30px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.9rem; }
        .form-group input, .form-group textarea { 
            width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; 
            font-family: inherit; transition: 0.3s;
        }
        .form-group input:focus { border-color: var(--accent); outline: none; }
        .btn-submit { 
            width: 100%; padding: 20px; background: var(--primary); color: #fff; 
            border: none; border-radius: 10px; font-weight: 800; cursor: pointer; transition: 0.3s;
        }
        .btn-submit:hover { background: var(--accent); color: #000; }

        /* --- Footer & Floating --- */
        .floating {
            position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
            background: rgba(10,10,10,0.9); backdrop-filter: blur(10px);
            display: flex; gap: 50px; padding: 18px 60px; border-radius: 100px; z-index: 999;
        }
        .float-item { color: #fff; text-align: center; font-size: 0.7rem; cursor: pointer; }
        .float-item i { font-size: 1.4rem; color: var(--accent); display: block; margin-bottom: 5px; }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .model-grid, .visit-grid, #about { grid-template-columns: 1fr; flex-direction: column; }
            .about-img { width: 100%; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-links {
                position: fixed; top: 0; right: -100%; height: 100vh; width: 100%;
                background: #000; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s;
            }
            .nav-links.active { right: 0; }
            .nav-links a { font-size: 1.8rem; font-weight: 800; }
            .floating { width: 90%; padding: 15px; gap: 10px; justify-content: space-around; }
            .floating span { display: none; }
        }

        /*map*/
        /* --- Visit Showroom (좌측 지도 이미지) --- */
        #visit { padding: 120px 6%; background: #fff; }
        .visit-container { 
            display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; 
            max-width: 1200px; margin: 0 auto; align-items: center;
        }
        .map-wrapper { 
            position: relative; width: 100%; height: 550px; 
            border-radius: 30px; overflow: hidden; 
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        /* 지도 대신 들어가는 이미지 (카카오맵 연동 전 시각적 요소) */
        .map-image { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
        
        .showroom-info h3 { font-size: 2.8rem; margin-bottom: 40px; font-weight: 800; line-height: 1.2; }
        .info-item { display: flex; gap: 20px; margin-bottom: 30px; }
        .info-item i { font-size: 1.5rem; color: var(--accent); }
        .info-item h5 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; }
        .info-item p { color: #666; font-size: 0.95rem; line-height: 1.6; }

        .btn-map { 
            display: inline-block; padding: 18px 35px; background: var(--primary); 
            margin-top:12px;
            color: #fff; font-weight: 700; border-radius: 10px; transition: 0.3s;
        }
        .btn-map:hover { background: var(--accent); color: #000; }




		 /* 기본 스타일 초기화 */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif; background-color: #fff; color: #333; }

        /* 이벤트 섹션 전체 */
        .premium-event-section {
            padding: 100px 20px;
            background-color: #111; /* 고급스러운 다크 배경 */
            color: #fff;
            overflow: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* 헤더 부분 */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header .badge {
            display: inline-block;
            padding: 6px 14px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            font-size: 14px;
            color: #cda434; /* 골드 포인트 색상 */
            margin-bottom: 15px;
            font-weight: 600;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .section-header h2 span {
            color: #cda434;
        }

        .section-header p {
            font-size: 18px;
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* 그리드 레이아웃 */
        .event-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* 고급 카드 스타일 */
        .premium-card {
            background-color: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid #2a2a2a;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .premium-card:hover {
            transform: translateY(-10px);
            border-color: #cda434;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        /* 이미지 영역 & 오버레이 */
        .card-image-wrap {
            position: relative;
            height: 260px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }

        .premium-card:hover .card-image {
            transform: scale(1.08);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0));
        }

        /* 기간 배지 */
        .date-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #cda434;
            color: #000;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
        }

        /* 카드 텍스트 콘텐츠 */
        .card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-text h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
            line-height: 1.4;
        }

        .card-text p {
            font-size: 15px;
            color: #b0b0b0;
            line-height: 1.6;
            margin-bottom: 25px;
            word-break: keep-all;
        }

        /* CTA 버튼 */
        .card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 14px;
            background-color: transparent;
            border: 1px solid #cda434;
            color: #cda434;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .premium-card:hover .card-btn {
            background-color: #cda434;
            color: #000;
        }

        /* 반응형 미디어 쿼리 */
        @media (max-width: 1024px) {
            .event-grid { grid-template-columns: repeat(2, 1fr); }
            .section-header h2 { font-size: 36px; }
        }

        @media (max-width: 768px) {
            .premium-event-section { padding: 70px 15px; }
            .section-header { margin-bottom: 50px; }
            .event-grid { grid-template-columns: 1fr; gap: 20px; }
            .section-header h2 { font-size: 30px; }
            .section-header p { font-size: 16px; }
            .card-image-wrap { height: 220px; }
        }