/* My Shopping Spot - Retro Pop Art UI */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Righteous&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
    --primary-red: #FF4444;
    --primary-blue: #44CCFF;
    --primary-cream: #FFFDD0;
    --text-dark: #333333;
    --accent-yellow: #FFD700;
    --border-width: 3px;
}

body {
    background-color: var(--primary-cream);
    color: var(--text-dark);
    font-family: 'Roboto Condensed', sans-serif;
    background-image: radial-gradient(var(--primary-blue) 1px, transparent 1px);
    background-size: 20px 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', cursive;
    color: var(--primary-red);
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #fff, 4px 4px 0px rgba(0,0,0,0.1);
}

/* Utilities */
.text-red {
    color: var(--primary-red) !important;
}

.bg-red {
    background-color: var(--primary-red);
    color: #fff;
}

.bg-blue {
    background-color: var(--primary-blue);
    color: #fff;
}

.font-script {
    font-family: 'Lobster', cursive;
}

/* Navbar */
.navbar {
    background-color: #fff;
    border-bottom: var(--border-width) solid var(--text-dark);
    padding: 1rem 0;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Lobster', cursive;
    font-size: 2rem;
    color: var(--primary-red) !important;
    transform: rotate(-2deg);
}

.nav-link {
    font-family: 'Righteous', cursive;
    font-size: 1.1rem;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    margin: 0 10px;
    transition: transform 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue) !important;
    transform: scale(1.1) rotate(2deg);
}

/* Buttons */
.btn-retro {
    background-color: var(--primary-red);
    color: #fff;
    font-family: 'Righteous', cursive;
    text-transform: uppercase;
    padding: 10px 30px;
    border: var(--border-width) solid var(--text-dark);
    border-radius: 50px;
    box-shadow: 4px 4px 0 var(--text-dark);
    transition: all 0.2s;
}

.btn-retro:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--text-dark);
    color: #fff;
}

.btn-retro-blue {
    background-color: var(--primary-blue);
    color: #fff;
    font-family: 'Righteous', cursive;
    text-transform: uppercase;
    padding: 10px 30px;
    border: var(--border-width) solid var(--text-dark);
    border-radius: 50px;
    box-shadow: 4px 4px 0 var(--text-dark);
    transition: all 0.2s;
}

.btn-retro-blue:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--text-dark);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    background-color: var(--primary-blue);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    text-align: center;
    position: relative;
    border-bottom: var(--border-width) solid var(--text-dark);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSIvPgo8cGF0aCBkPSJNMCAwTDggOFpNOCAwTDAgOFoiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
}

.hero-title {
    font-size: 5rem;
    color: #fff;
    text-shadow: 4px 4px 0 var(--text-dark);
    transform: rotate(-3deg);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Lobster', cursive;
    font-size: 2rem;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 0 var(--text-dark);
    margin-bottom: 3rem;
}

/* Retro Cards */
.retro-card {
    background-color: #fff;
    border: var(--border-width) solid var(--text-dark);
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.1);
}

.retro-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 8px 8px 0 var(--text-dark);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--accent-yellow);
    color: var(--primary-red);
    font-family: 'Righteous', cursive;
    padding: 5px 10px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    transform: rotate(15deg);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px 30px;
    transform: skew(-10deg);
    border: var(--border-width) solid var(--text-dark);
    box-shadow: 4px 4px 0 var(--text-dark);
}

/* New Sections Styling */
.stat-circle {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: var(--border-width) solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 4px 4px 0 var(--primary-blue);
}

.stat-number {
    font-family: 'Righteous', cursive;
    font-size: 2.5rem;
    color: var(--primary-red);
    line-height: 1;
}

.step-box {
    background-color: #fff;
    border: var(--border-width) solid var(--text-dark);
    padding: 2rem;
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
}

.testimonial-bubble {
    background-color: #fff;
    border: var(--border-width) solid var(--text-dark);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: var(--text-dark) transparent;
    display: block;
    width: 0;
}

.testimonial-bubble::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 18px 18px 0;
    border-style: solid;
    border-color: #fff transparent;
    display: block;
    width: 0;
    z-index: 1;
}

/* Coupon Code */
.coupon-code {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    background-color: var(--primary-cream);
    border: 2px dashed var(--text-dark);
    color: var(--text-dark);
    padding: 10px 20px;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.2s;
    transform: rotate(-2deg);
}

.coupon-code:hover {
    background-color: var(--accent-yellow);
    transform: rotate(0deg) scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: #fff;
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    border-top: 10px solid var(--primary-red);
}

.footer h4, .footer h6 {
    color: var(--accent-yellow);
    text-shadow: none;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}
