/* --- CONFIGURATION: EDIT THESE TO CHANGE THEME --- */
:root {
    --gold: #C5A059;
    --dark-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-gradient: linear-gradient(135deg, #C5A059 0%, #8E6D31 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
.navbar {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); }
.logo span { color: white; font-weight: 300; }
.nav-links a { color: white; text-decoration: none; margin-left: 30px; font-size: 0.9rem; }
.nav-btn { background: var(--gold); padding: 8px 20px; border-radius: 5px; color: black !important; }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(5,5,5,1) 90%);
}
.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 0 20px; }
.promo-badge { background: #E74C3C; color: white; padding: 5px 15px; border-radius: 50px; display: inline-block; font-size: 0.8rem; margin-bottom: 20px; }
h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.highlight { color: var(--gold); }
.cta-group { margin-top: 30px; }

/* --- BUTTONS --- */
.btn-gold { background: var(--accent-gradient); color: white; padding: 15px 35px; text-decoration: none; border-radius: 5px; font-weight: 600; margin-right: 15px; display: inline-block; }
.btn-outline { border: 1px solid white; color: white; padding: 15px 35px; text-decoration: none; border-radius: 5px; display: inline-block; transition: 0.3s; }
.btn-outline:hover { background: white; color: black; }

/* --- STOREFRONT --- */
.storefront { padding: 100px 5%; background: #080808; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); }
.section-subtitle { color: var(--text-muted); margin-bottom: 50px; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.shop-card {
    background: var(--card-bg);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}
.shop-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.card-header { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
.card-price { font-size: 3rem; font-weight: 700; margin: 20px 0; color: var(--gold); }
.card-price span { font-size: 1rem; color: var(--text-muted); font-weight: 300; }
.card-features { list-style: none; margin-bottom: 30px; color: var(--text-muted); text-align: left; }
.card-features li { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }

.shop-btn { display: block; padding: 15px; background: white; color: black; text-decoration: none; font-weight: 600; border-radius: 5px; }
.shop-btn.gold { background: var(--accent-gradient); color: white; }

/* FEATURED CARD */
.featured { border: 2px solid var(--gold); position: relative; }
.best-value { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: black; padding: 5px 20px; border-radius: 5px; font-weight: bold; font-size: 0.8rem; }

/* --- PORTFOLIO --- */
.portfolio { padding: 80px 5%; text-align: center; }
.main-collage { max-width: 100%; border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* --- STATS --- */
.trust-bar { display: flex; justify-content: space-around; padding: 50px 5%; background: black; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.stat span { display: block; font-size: 2rem; color: var(--gold); font-weight: bold; }
/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 5%;
    background: #050505;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.test-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px dotted rgba(197, 160, 89, 0.3); /* Subtle gold border */
    text-align: left;
    transition: 0.3s;
}

.test-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.client-name {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* --- PAYMENT GATEWAY --- */
.payment-gateway {
    padding: 100px 5%;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #222;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pay-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    border: 1px solid #333;
    transition: 0.3s;
}

.pay-card.highlighted {
    border: 1px solid var(--gold);
}

.pay-icon {
    width: 100px;
    margin-bottom: 20px;
}

.pay-btn {
    display: block;
    margin-top: 15px;
    background: #0070ba; /* PayPal Blue */
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.pay-detail {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gold);
}

.pay-list {
    list-style: none;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 15px 0;
}

.pay-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-muted);
}

.google-pay-banner {
    margin-top: 50px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
/* --- STORE PAGE STYLING --- */
.store-hero {
    height: 40vh;
    background: transparent; /* CHANGE THIS IMAGE FOR STORE BACKGROUND */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.full-menu { padding: 80px 5%; background: #0a0a0a; }
.menu-container { max-width: 900px; margin: 0 auto; }

.category { margin-bottom: 60px; }
.category-title { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 30px; font-size: 2rem; border-bottom: 1px solid #333; padding-bottom: 10px; }

.price-table { background: var(--card-bg); border-radius: 15px; overflow: hidden; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-row:last-child { border-bottom: none; }
.price-row span { color: var(--text-white); font-weight: 400; }
.price-row strong { color: var(--gold); font-size: 1.2rem; }

.highlight-row { background: rgba(197, 160, 89, 0.1); border-left: 4px solid var(--gold); }

.select-link { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; border: 1px solid #444; padding: 5px 15px; border-radius: 5px; transition: 0.3s; }
.select-link:hover { background: var(--gold); color: black; border-color: var(--gold); }

/* COVER CARD */
.cover-card { background: var(--card-bg); padding: 40px; border-radius: 15px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; border: 1px solid #333; }
.cover-info h3 { color: var(--gold); margin-bottom: 10px; }
.cover-price { font-size: 1.5rem; font-weight: bold; margin-top: 10px; }
.cover-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; }
/* --- PORTFOLIO PAGE STYLING --- */
.portfolio-hero {
    height: 60vh;
    background: transparent; /* EDIT THIS FOR PORTFOLIO BACKGROUND */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 20px;
}

.about-me { padding: 80px 10%; background: #080808; line-height: 2; }
.bio-content p { margin-bottom: 20px; font-size: 1.1rem; color: #ddd; }

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin: 50px 0;
    padding: 0 50px;
    border-left: none;
}

.expect-grid { display: flex; gap: 20px; padding: 50px 5%; background: #0a0a0a; }
.expect-card { background: var(--card-bg); padding: 30px; border-radius: 10px; border: 1px solid #222; flex: 1; }
.expect-card h3 { color: var(--gold); margin-bottom: 15px; }

.contact-footer { padding: 100px 5%; text-align: center; background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('Untitled design.png'); background-size: cover; }
.contact-links { margin-top: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.contact-btn { border: 1px solid var(--gold); color: var(--gold); padding: 15px 30px; text-decoration: none; border-radius: 5px; transition: 0.3s; }
.contact-btn:hover { background: var(--gold); color: black; }
/* 1. This tells the browser how to handle the background image on ALL pages */
body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* 2. This adds a dark tint so your text is easy to read against the photo */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); /* 0.8 makes it 80% dark */
    z-index: -1;
}

/* 3. This links each page ID to your image file */
.home-bg {
    background-image: url('c:\Users\USER\OneDrive\Pictures\whatapp ad design.png');
}

.store-bg {
    background-image: url('c:\Users\USER\OneDrive\Pictures\Wallpapers\#esthetic.jpg');
}

.portfolio-bg {
    background-image: url('c:\Users\USER\OneDrive\Desktop\Untitled design.png');
}
/* --- LEGAL PAGE STYLING --- */
.legal-content {
    padding: 80px 10%;
    background: #0a0a0a;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 60px;
}

.policy-section h2 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.policy-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}