/*
Theme Name: Club Pheromone
Template: bloxy
Version: 1.0
*/

/* FORCE DARK THEME - Override parent */
body, html { 
    background: #0A0A0A !important; 
    color: #fff !important; 
}

/* Hide parent header */
#header, #blogHeader, .blogHeader, #topNav { 
    display: none !important; 
}

/* Custom Header */
.cp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cp-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFD700;
}

.cp-nav {
    display: flex;
    gap: 40px;
}

.cp-nav a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cp-nav a:hover {
    color: #FFD700;
}

/* Hero */
.cp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: #0A0A0A;
    position: relative;
}

.gold-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%);
    filter: blur(30px);
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-bottle {
    width: 180px;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cp-hero p {
    color: #B0B0B0;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 10px;
}

.cp-hero .price {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 40px;
}

.cp-btn {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
}

.cp-btn:hover {
    background: #FFD700;
    color: #0A0A0A;
}

/* Sections */
.cp-signature, .cp-collection, .cp-philosophy {
    padding: 100px 60px;
    text-align: center;
    background: #0A0A0A;
}

.cp-signature h2, .cp-collection h2, .cp-philosophy h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.cp-signature h2, .cp-collection h2 span, .cp-philosophy h2 {
    color: #FFD700;
}

.cp-signature p {
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #141414;
    border: 1px solid #2D2D2D;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.3);
}

.product-card img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.product-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.product-card .price {
    color: #FFD700;
    font-size: 22px;
    font-weight: 700;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 50px 0;
}

.stat h4 {
    font-size: 56px;
    font-weight: 700;
    color: #FFD700;
}

.stat p {
    font-size: 12px;
    letter-spacing: 3px;
    color: #B0B0B0;
}

/* Footer */
.cp-footer {
    padding: 80px 60px 40px;
    background: #0A0A0A;
    border-top: 1px solid #2D2D2D;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #B0B0B0;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #FFD700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #2D2D2D;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFD700;
    text-align: center;
}

/* Hide default WordPress content */
#sidebar, .widget, .widget-area {
    display: none !important;
}

#content, #wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .cp-header { padding: 15px 20px; }
    .cp-nav { display: none; }
    .cp-hero { padding: 100px 20px 60px; }
    .cp-signature, .cp-collection, .cp-philosophy { padding: 60px 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stats { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
Step 3: Create Homepage
Go to Pages → Add New
Title: Home
Click Code Editor (3 dots menu → Code editor)
Paste this HTML:
<!-- Header -->
<header class="cp-header">
    <div class="cp-logo">CLUB PHEROMONE</div>
    <nav class="cp-nav">
        <a href="#collection">COLLECTION</a>
        <a href="#story">STORY</a>
    </nav>
    <a href="/cart" style="color: #fff; text-decoration: none; font-size: 12px;">CART</a>
</header>

<!-- Hero -->
<section class="cp-hero">
    <div class="gold-sphere"></div>
    <img src="https://fwryoqp7cfo42.ok.kimi.link/bottles/mystique.png" alt="Perfume" class="hero-bottle">
    <h1>GET RECOGNISED BY<br>YOUR FRAGRANCE</h1>
    <p>Luxury fragrances crafted for those who dare to leave a lasting impression.</p>
    <p class="price">₹899 inclusive of all taxes</p>
    <a href="#collection" class="cp-btn">EXPLORE THE COLLECTION →</a>
</section>

<!-- Signature -->
<section class="cp-signature" id="story">
    <h2>SIGNATURE</h2>
    <p>A scent that stays after you leave. Crafted for presence, designed to be remembered.</p>
    <a href="#story" style="color: #FFD700; text-decoration: none;">READ THE STORY →</a>
</section>

<!-- Collection -->
<section class="cp-collection" id="collection">
    <h2>FIND YOUR <span>SIGNATURE</span></h2>
    <p style="color: #B0B0B0;">14 unique fragrances. One perfect match.</p>
    <div style="text-align: center; margin: 30px 0;">
        <span style="color: #FFD700; margin: 0 20px;">ALL</span>
        <span style="color: #B0B0B0; margin: 0 20px;">MEN</span>
        <span style="color: #B0B0B0; margin: 0 20px;">WOMEN</span>
        <span style="color: #B0B0B0; margin: 0 20px;">UNISEX</span>
    </div>
</section>

<!-- Philosophy -->
<section class="cp-philosophy">
    <h2>CRAFTED FOR PRESENCE</h2>
    <p style="color: #B0B0B0; max-width: 700px; margin: 0 auto 50px;">We compose each fragrance as a signature—distinct, long-lasting, impossible to ignore.</p>
    <div class="stats">
        <div class="stat"><h4>15</h4><p>FRAGRANCES</p></div>
        <div class="stat"><h4>8-12h</h4><p>LASTING</p></div>
        <div class="stat"><h4>100%</h4><p>COMPLIMENTS</p></div>
    </div>
</section>

<!-- Footer -->
<footer class="cp-footer">
    <div class="footer-grid">
        <div class="footer-col">
            <h4>SHOP</h4>
            <a href="#">All Fragrances</a>
            <a href="#">For Him</a>
            <a href="#">For Her</a>
        </div>
        <div class="footer-col">
            <h4>DISCOVER</h4>
            <a href="#">Our Story</a>
            <a href="#">Collection</a>
        </div>
        <div class="footer-col">
            <h4>SUPPORT</h4>
            <a href="#">Contact Us</a>
            <a href="#">Shipping</a>
        </div>
        <div class="footer-col">
            <h4>LEGAL</h4>
            <a href="#">Privacy Policy</a>
            <a href="#">Terms</a>
        </div>
    </div>
    <div class="footer-bottom">
        <div style="color: #B0B0B0; font-size: 13px;">support@clubpheromone.com<br>+91 98765 43210</div>
        <div class="footer-logo">CLUB<br>PHEROMONE</div>
        <div style="color: #B0B0B0; font-size: 11px;">© 2026 CLUB PHEROMONE</div>
    </div>
</footer>