:root {
    --gold: #d4af37;
    --dark: #0b0b0b;
    --glass: rgba(255,255,255,0.08);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: white;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);                
    backdrop-filter: blur(12px);                
    z-index: 1000;                
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn {
    border: 1px solid var(--gold);
    padding: 8px 15px;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    padding: 120px 8% 0;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin: 20px 0;
}

.hero-right {
    flex: 1;
}

.hero-image {
    width: 100%;
    height: 90%;
    background: url('https://images.unsplash.com/photo-1617038220319-276d3cfab638') center/cover;
    border-radius: 20px;
}

/* BUTTONS */
.btn-primary {
    background: var(--gold);
    color: black;
    padding: 14px 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* CARDS */
.section { padding: 100px 8%; text-align: center; }
.title { font-size: 2.8rem; font-family: 'Playfair Display'; color: var(--gold); margin-bottom: 50px; }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    text-decoration: none;
    color: white;
}

.card img { width: 100%; height: 320px; object-fit: cover; }
.card h3 { margin: 15px 0 5px; font-family: 'Playfair Display'; }
.card p { color: var(--gold); padding-bottom: 20px; }
.card:hover { transform: translateY(-10px); }

/* BESPOKE SECTION */
.bespoke {
    position: relative;
    padding: 100px 8%;
    background: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
}

.overlay { position: absolute; top:0; left:0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); }
.bespoke-content { position: relative; z-index: 1; }

.bespoke-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.feat-item i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }

/* FOOTER */
footer { background: #000; padding: 60px 8%; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
footer a { display: block; color: #aaa; text-decoration: none; margin: 8px 0; }
.social i { margin-right: 15px; color: var(--gold); font-size: 22px; cursor: pointer; }
.copy { margin-top: 40px; text-align: center; color: #555; font-size: 0.9rem; }

/* RESPONSIVE */
@media(max-width:768px){
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero h1 { font-size: 2.2rem; }
    .bespoke-features { flex-direction: column; gap: 30px; }
}



/* PRODUCT PAGE */

.product-page{
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 140px 8%;
    background: radial-gradient(circle at top, #1b1b1b, #090909);
}

.product-image-container{
    flex: 1;
}

.product-image-container img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transition: 0.5s;
}

.product-image-container img:hover{
    transform: scale(1.03);
}

.product-info{
    flex: 1;
}

.product-info h1{
    font-size: 3rem;
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
}

.product-info h2{
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-desc{
    color: #cfcfcf;
    margin-bottom: 35px;
    line-height: 1.8;
}

.product-features{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature{
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.feature i{
    color: var(--gold);
    font-size: 1.3rem;
}

/* SOCIAL LINKS */

.landscape-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}

.landscape-social a {
    width: 45px;
    height: 45px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.2s;
}

.landscape-social a:hover {
    transform: translateY(-5px);
}

.landscape-social i {
    color: white;
    font-size: 40px;
}







/* NAVBAR GLOW */

.navbar{
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

/* HERO IMAGE ANIMATION */

.hero-image{
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* CARD HOVER */

.card{
    position: relative;
}

.card::before{
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: 0.4s;
}

.card:hover::before{
    border-color: rgba(212,175,55,0.4);
}

/* MOBILE */

@media(max-width:768px){

    .product-page{
        flex-direction: column;
        text-align: center;
    }

    .product-info h1{
        font-size: 2.2rem;
    }

}







