* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Titillium Web", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    
    background-image: url("../images/bg-tile.webp");
    color: #ffffff;
}

/* Navigation */
nav {
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    background-image: url("../images/bg-tile.webp");
}

.logo {
    width: 100%;
    padding: 50px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    max-width: 250px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #919191;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c4a747;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.1)), url('../images/hero.webp') right/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hero-left{
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 100px;
}
.hero-right{
    width: 50vw;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: "Playfair", serif;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: left;
}

.cta-button {
    padding: 1rem 2rem;
    border: 2px solid #c4a747;
    color: #c4a747;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #c4a747;
    color: #000000;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-family: "Playfair", serif;
    font-weight: 400;
    color: #919191;
    text-align: center;
}

.about p{
    color: #919191;
    margin-top: 1rem;
}

/* Legacy Section */
.legacy {
    display: flex;
    align-items: center;
    background-color: #0d0d0d;
}

.legacy-image {
    width: 50vw;
    height: 500px;
    background: url("../images/legacy.webp") center/cover;
}

.legacy-content {
    flex: 1;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.legacy-content p{
    color: #919191;
    margin-top: 1rem;
    text-align: center;
}

/* collection Section */
.collection {
    padding: 5rem 2rem 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.collection-card {
    background-color: #0d0d0d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.collection-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-content h3 {
    text-align: center;
    font-family: "Playfair", serif;
    font-weight: 400;
    font-size: 2rem;
    color: #919191;
}

.collection-content p {
    text-align: center;
    color: #919191;
}

.collection-date {
    color: #c4a747;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.collection-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-header p {
    max-width: 800px;
    text-align: center;
    color: #919191;
    margin-top: 1rem;
}

.contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2rem;
}

.contact p {
    color: #919191;
}

.contact-content {
    max-width: 800px;
    text-align: center;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 20px 50px 0;
}

.contact-details a{
    text-decoration: none;
}

.phone, .email {
    background-color: #0d0d0d;
    padding: 20px;
    width: 40vw;
    color: #919191;
    border-radius: 8px;
}

.phone i, .email i{
    margin-right: 10px;
}

.phone h3, .email h3{
    font-family: "Playfair", serif;
    font-weight: 400;
    font-size: 1.5rem;
}

.phone:hover h3 {
    color: #c4a747;
}

.phone span{
    font-family: "Playfair", serif;
    font-weight: 400;
}

.email:hover h3 {
    color: #c4a747;
}


/* Footer */
footer {
    background-color: #000000;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 1rem;
}

footer p {
    color: #919191;
    font-size: .75rem;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #c4a747;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-top.visible {
    opacity: 1;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #919191;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: sticky;
        top: 100px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .legacy {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-right{
        width: 0;
    }
    .hero-left{
        padding-left: 0;
    }
    .legacy-image {
        width: 100vw;
    }
    .legacy-content {
        padding: 5rem 2rem;
    }
    .contact-details{
        flex-direction: column;
        gap: 1rem;
    }
    .phone, .email {
        width: 80vw;
    }
    html {
        scroll-padding-top: 250px!important;
    }
    .logo img{
        max-width: 200px;
    }
}