/* style.css */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.8;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 300;
}

.nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #222;
    position: relative;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 2px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #222;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #222;
    transition: 0.4s;
}

/* HERO */

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%);
}

/* TITLE */

.hero-title {
    position: absolute;
    top: 35%;
    left: 10%;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
}

.hero-title h1 {
    font-size: 90px;
    font-weight: 200;
    letter-spacing: 10px;
}

.hero-title p {
    margin-top: 10px;
    letter-spacing: 3px;
}

/* DOTS */

.dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: 0.4s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* SECTION */

.section {
    padding: 120px 10%;
}

.section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 5px;
}

/* ABOUT */

.about-text {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #444;
}

/* MENU */

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab {
    border: none;
    background: #ddd;
    padding: 12px 30px;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 2px;
}

.tab.active {
    background: #222;
    color: white;
}

.menu-content {
    display: none;
    animation: fade 0.5s ease;
}

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

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ACCESS */

.map-area {
    width: 100%;
    height: 450px;
    margin-bottom: 40px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-info {
    text-align: center;
}

/* CONTACT */

.contact {
    text-align: center;
}

.contact-text {
    margin-bottom: 20px;
}

.contact-tel {
    font-size: 22px;
    margin-bottom: 30px;
}

.sns-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sns-links a {
    color: #222;
    font-size: 34px;
    transition: 0.3s;
}

.sns-links a:hover {
    transform: translateY(-5px);
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 30px;
    background: #222;
    color: white;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .header {
        padding: 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

    .hero-title {
        left: 8%;
        top: 40%;
    }

    .hero-title h1 {
        font-size: 48px;
    }

    .hero-title p {
        font-size: 14px;
    }

    .section {
        padding: 100px 7%;
    }

}
