/* ARCYDAN OFFICIAL WEBSITE - STYLE.CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #1E2420;
    color: #F3EFE8;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url("arcydan.jpg");
    background-size: cover;
    background-position: center 8%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 22, 19, .32);
    z-index: 1;
}

.navbar,
.hero-content {
    position: relative;
    z-index: 2;
}

/* NAVIGATION */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
}

.logo {
    font-family: "Cinzel", serif;
    font-size: 30px;
    letter-spacing: 7px;
    color: #F3EFE8;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navbar a {
    color: #F3EFE8;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #BFA37A;
}

/* HERO CONTENT */

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    padding: 0 8%;
}

.tagline {
    font-family: "Cinzel", serif;
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #BFA37A;
    border-radius: 40px;
    color: #F3EFE8;
    text-decoration: none;
    transition: .35s;
    letter-spacing: 1px;
}

.btn:hover {
    background: #BFA37A;
    color: #1E2420;
}

/* SECTIONS */

.section {
    padding: 120px 10%;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all .9s ease;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

.section::before {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    margin: 0 auto 45px;
    background: #BFA37A;
}

.section h2 {
    font-family: "Cinzel", serif;
    font-size: 38px;
    margin-bottom: 35px;
}

/* STORY */

.story {
    background: #1E2420;
    padding: 140px 10%;
}

.story p {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1.8;
    max-width: 850px;
    margin: auto;
    font-weight: 400;
    letter-spacing: .3px;
}

/* MUSIC */

.music {
    background: #2A322D;
}

.music-grid {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 45px;
}

.music-card {
    width: 340px;
    background: #323B35;
    border: 1px solid #556157;
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
    transition: .3s;
    color: #F3EFE8;
}

.music-card:hover {
    transform: translateY(-8px);
    border-color: #BFA37A;
}

.music-card-link {
    display: block;
    text-decoration: none;
}

.music-cover {
    width: 100%;
    height: 340px;
    background: #1E2420;
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #556157;
}

.placeholder-cover span {
    font-family: "Cinzel", serif;
    color: #BFA37A;
    font-size: 18px;
    letter-spacing: 2px;
}

.music-card-content {
    padding: 28px 30px 32px;
}

.music-card h3 {
    font-family: "Cinzel", serif;
    font-size: 22px;
    color: #F3EFE8;
    margin-bottom: 18px;
}

.music-card p {
    color: #F3EFE8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.music-card a,
.music-card span {
    color: #BFA37A;
    text-decoration: none;
    font-weight: 500;
}

/* GALLERY */

.gallery-section {
    background: #1E2420;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    background: #323B35;
    border: 1px solid #556157;
    transition: .4s;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: #BFA37A;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOOKING */

.booking {
    background: #2A322D;
    padding: 140px 10%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-bottom: 60px;
}

.social-links a {
    color: #F3EFE8;
    font-size: 31px;
    transition: .3s;
}

.social-links a:hover {
    color: #BFA37A;
    transform: translateY(-6px);
}

.booking h2 {
    font-family: "Cinzel", serif;
    font-size: 42px;
    color: #F3EFE8;
    margin-bottom: 20px;
}

.booking p {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.6;
    color: #F3EFE8;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* FOOTER */

footer {
    background: #121613;
    color: #F3EFE8;
    text-align: center;
    padding: 40px 20px;
}

footer h3 {
    font-family: "Cinzel", serif;
    letter-spacing: 7px;
    margin-bottom: 10px;
}

footer p {
    font-size: 13px;
    letter-spacing: 1px;
}

/* MOBILE */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 22px;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero {
        background-position: center top;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 6%;
        max-width: none;
    }

    .tagline {
        font-size: 26px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section {
        padding: 90px 8%;
    }

    .story {
        padding: 100px 8%;
    }

    .story p {
        font-size: 26px;
    }

    .music-card {
        width: 100%;
        max-width: 380px;
    }

    .music-cover {
        height: 380px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}
/* MOBILE MENU */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #F3EFE8;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        flex-direction: row;
    }

    .menu-toggle {
        display: block;
    }

    .navbar ul {
        position: absolute;
        top: 80px;
        right: 8%;
        width: 220px;
        background: rgba(18, 22, 19, .95);
        border: 1px solid #556157;
        border-radius: 18px;
        padding: 25px;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .navbar ul.show-menu {
        display: flex;
    }
}