/*
Theme Name: Amazon Affiliate Sexy Theme
Theme URI: https://example.com
Author: Antigravity
Author URI: https://example.com
Description: A modern, high-conversion theme with glassmorphism and premium aesthetics for Amazon Affiliates.
Version: 1.0.0
Text Domain: amazon-sexy
*/

/* ----------------------------------------------------------------
   1. Variables & Reset
-----------------------------------------------------------------*/
:root {
    --primary: #FF9900;
    --secondary: #131921;
    --dark: #0F1111;
    --light: #F3F3F3;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: 20px;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--secondary);
    /* Dark Mode Default */
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ----------------------------------------------------------------
   2. Layout & Utilities
-----------------------------------------------------------------*/
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
    gap: 2rem;
}


.btn .elementor-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary) !important;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn .elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.4);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* ----------------------------------------------------------------
   3. Header
-----------------------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(19, 25, 33, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ----------------------------------------------------------------
   4. Hero Section
-----------------------------------------------------------------*/
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 20% 50%, rgba(255, 153, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(35, 47, 62, 0.8) 0%, transparent 50%);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title,
.hero-title h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 350px;
    padding: 30px;
    text-align: center;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
}

.hero-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

/* ----------------------------------------------------------------
   5. Footer
-----------------------------------------------------------------*/
.site-footer {
    background: var(--secondary);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #666;
}

/* ----------------------------------------------------------------
   6. Sections
-----------------------------------------------------------------*/
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

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