﻿/* Main Stylesheet for Warrantedstores */
:root {
    --primary: #3D5220;
    --secondary: #B7CB99;
    --accent: #778FD2;
    --dark: #2A3759;
    --wine: #431D32;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: rgba(42, 55, 89, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--accent);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: linear-gradient(45deg, var(--accent), var(--wine));
    color: white;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(119, 143, 210, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.cta-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
    font-weight: 700;
}

.about-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark);
    line-height: 1.8;
}

/* Programs Section */
.programs-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    padding: 80px 0;
}

/* Schedule Section */
.schedule-section {
    background: var(--secondary);
    padding: 80px 20px;
    color: var(--dark);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-day {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.schedule-day h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.class-time {
    background: var(--accent);
    color: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    background: var(--primary);
    padding: 80px 20px;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(119, 143, 210, 0.3);
}

.pricing-card.featured {
    background: var(--accent);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.btn-primary {
    background: var(--wine);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Trial Section */
.trial-section {
    background: var(--wine);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.btn-large {
    background: var(--accent);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(119, 143, 210, 0.4);
}

/* Safety Section */
.safety-section {
    padding: 80px 20px;
    background: #F8F9FA;
}

.safety-section ul {
    max-width: 800px;
    margin: 30px auto 0;
}

.safety-section li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    background: var(--secondary);
    padding: 80px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
}

.blog-card p {
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin: 20px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--wine);
}

/* Footer Styles */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.external-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.external-links a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.external-links a:hover {
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid var(--accent);
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--wine);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Testimonial Styles */
.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent);
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Additional Responsive */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}