/* 
 * Wind Progression - Retro Style Theme
 * 
 * This stylesheet adds retro design elements to the main styles.
 */

/* Custom Font Import for Retro Look */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Special+Elite&display=swap');

/* Retro Color Palette Overrides */
:root {
    /* Primary retro colors */
    --primary: hsl(18, 80%, 55%); /* #F07242 - warm orange */
    --primary-dark: hsl(18, 80%, 45%); /* #D45C2F - darker orange */
    --primary-light: hsl(18, 80%, 65%); /* #F48A5F - lighter orange */
    
    /* Secondary retro colors */
    --secondary: hsl(200, 65%, 25%); /* #1A5276 - deep blue */
    --secondary-dark: hsl(200, 65%, 15%); /* #103152 - darker blue */
    --secondary-light: hsl(200, 65%, 35%); /* #2473A1 - lighter blue */
    
    /* Neutral retro colors */
    --text: hsl(35, 15%, 25%); /* #443F33 - warm gray-brown */
    --text-light: hsl(35, 10%, 45%); /* #736F66 - lighter warm gray */
    --bg-light: hsl(40, 30%, 97%); /* #FAF7F0 - cream */
    --bg-dark: hsl(40, 25%, 92%); /* #F0E9D9 - darker cream */
    --border: hsl(35, 20%, 80%); /* #D5CCBC - warm beige */
    
    /* Retro texture and effects */
    --texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* General Retro Style Adjustments */
body {
    background-color: var(--bg-light);
    background-image: var(--texture);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
    color: var(--text);
}

/* Stylized Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

/* Retro Divider */
.retro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 500px;
}

.retro-divider span {
    height: 2px;
    background-color: var(--primary);
    flex: 1;
}

.retro-divider img {
    width: 30px;
    height: 30px;
    margin: 0 15px;
    opacity: 0.8;
}

/* Header Retro Styling */
header {
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    background-image: var(--texture);
}

.logo a {
    font-family: 'Special Elite', cursive;
    letter-spacing: 0.08em;
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Button Retro Styling */
.btn {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    border-width: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    box-shadow: 3px 3px 0 var(--primary-dark);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--primary-dark);
}

/* Hero Section Retro Styling */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.03),
        rgba(0, 0, 0, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
    z-index: 3;
}

.hero-content h1 {
    font-family: 'Special Elite', cursive;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

/* Section Headers Retro Styling */
.section-header h2 {
    font-family: 'Special Elite', cursive;
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

/* Cards Retro Styling */
.product-card, .blog-card, .testimonial-content {
    border: 2px solid var(--border);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .blog-card:hover {
    transform: translateY(-5px) translateX(-2px);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.15);
}

.product-icon, .service-icon, .info-icon {
    border: 2px solid var(--primary);
}

/* Testimonial Retro Styling */
.testimonial-content {
    position: relative;
    padding-top: 40px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: 'Special Elite', cursive;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.4;
    line-height: 0.5;
}

.testimonial-author h4 {
    font-family: 'Oswald', sans-serif;
}

/* Contact Form Retro Styling */
.subscription-form {
    border: 2px solid var(--border);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

input, textarea, select {
    border: 2px solid var(--border);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Footer Retro Styling */
footer {
    border-top: 3px solid var(--primary);
    background-color: var(--secondary);
    background-image: var(--texture);
}

.footer-logo p {
    font-family: 'Special Elite', cursive;
}

/* Blog & Article Retro Styling */
.blog-date {
    font-family: 'Special Elite', cursive;
}

.article-container {
    background-color: white;
    background-image: var(--texture);
}

.article-content h2 {
    font-family: 'Special Elite', cursive;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
}

.article-content h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-dark);
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    font-style: italic;
    margin: 20px 0;
    color: var(--text-light);
}

.article-cta {
    border: 2px solid var(--border);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

/* Thank You Page Retro Styling */
.thanks-container {
    background-image: var(--texture);
}

.thanks-content {
    border: 2px solid var(--border);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-family: 'Special Elite', cursive;
}

/* Legal Pages Retro Styling */
.legal-nav {
    border: 2px solid var(--border);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    font-family: 'Special Elite', cursive;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
}

/* Cookie Banner & Modal Retro Styling */
.cookie-banner {
    border-top: 3px solid var(--primary);
}

.modal-content {
    border: 2px solid var(--border);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Retro Table Styling */
.cookie-table {
    border: 2px solid var(--border);
}

.cookie-table th {
    background-color: var(--secondary-light);
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Page Banner Retro Styling */
.page-banner {
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
}

.page-banner h1 {
    font-family: 'Special Elite', cursive;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

/* Mobile Navigation Retro Style */
@media (max-width: 768px) {
    nav {
        border-top: 2px solid var(--primary);
        border-bottom: 2px solid var(--primary);
    }
    
    .mobile-menu-btn span {
        height: 3px;
        border-radius: 0;
    }
}
