/* --- LUXURY DESIGN SYSTEM --- */
:root {
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --bg-dark: #050505;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.2);
    --radius: 28px; /* Applied to all components */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Texture for entire site (low opacity) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://i.ibb.co/6JqhwGxP/photo-2025-12-30-15-37-35.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -2;
    filter: grayscale(100%);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.logo { font-size: 1.2rem; font-weight: bold; color: #fff; letter-spacing: 3px; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { 
    color: #fff; text-decoration: none; font-size: 0.75rem; 
    text-transform: uppercase; letter-spacing: 2px; transition: 0.3s;
    position: relative;
}
.nav-links a::after {
    content: ''; display: block; width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.bar { width: 25px; height: 2px; background: #fff; transition: 0.3s; }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; /* Changed from height to min-height to accommodate content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 10% 80px; /* Added padding for top nav spacing */
    position: relative;
    overflow: hidden;
    gap: 2rem; /* Adds space between elements */
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://i.ibb.co/6JqhwGxP/photo-2025-12-30-15-37-35.jpg') center/cover no-repeat;
    opacity: 0.12;
    filter: brightness(0.3) grayscale(50%);
    mask-image: radial-gradient(circle, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 85%);
    z-index: -1;
}

.hero h1 { font-size: clamp(3rem, 10vw, 5.5rem); line-height: 1; margin-bottom: 0.5rem; }
.hero p { font-size: 1.2rem; color: #aaa; max-width: 800px; letter-spacing: 1px; }

/* Hero Image Styling */
.hero-img-wrapper {
    width: 250px;
    height: 250px;
    margin: 1rem 0 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

/* --- BUTTONS & CARDS (ROUNDED) --- */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: 0.4s;
    border: none;
    cursor: pointer;
}
.telegram-btn:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }

.review-card, .verif-card, .contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

/* --- REVIEWS MARQUEE --- */
.reviews-section { padding: 5rem 0; background: #000; border-top: 1px solid #111; overflow: hidden; }
.marquee-container { display: flex; width: max-content; animation: scroll 50s linear infinite; }
.review-card { margin: 0 1.5rem; width: 380px; }
.review-text { font-style: italic; color: #ccc; margin-bottom: 1.5rem; line-height: 1.8; }
.review-author { color: var(--gold); font-weight: bold; text-align: right; letter-spacing: 1px; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ABOUT SECTION --- */
/* Updated to be centered single column since image moved */
.about-section { 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    padding: 8rem 10%; 
    background: #080808; 
}

/* --- STRATEGY & VERIFICATION --- */
.verif-grid { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; padding: 0 10% 2rem; }
.verif-card { width: 350px; text-align: center; transition: 0.4s; padding: 4rem 2rem; }
.verif-card:hover { border-color: var(--gold); transform: translateY(-15px); }
.verif-card h3 { margin-bottom: 1rem; color: #fff; }

/* --- CONTACT SECTION --- */
.contact-section { padding: 10rem 10%; background: radial-gradient(circle at bottom, #111, #050505); }
.contact-card { max-width: 1000px; margin: 0 auto; text-align: center; padding: 6rem 2rem; }

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(40px); transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

#scrollTopBtn {
    position: fixed; bottom: 40px; right: 40px; background: var(--gold); color: #000; border: none;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: none; z-index: 1000; font-weight: bold;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; right: -100%; top: 0; flex-direction: column; background: #000;
        width: 100%; height: 100vh; justify-content: center; transition: 0.5s;
    }
    .nav-links.active { right: 0; }
    .about-section { padding: 6rem 5%; }
    .hero h1 { font-size: 3.2rem; }
    .hero-img-wrapper { width: 200px; height: 200px; }
}