/* 
 * Get Boxes Now - Main Stylesheet
 * Assets/css/styles.css
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    --primary-teal: #118791;
    --primary-navy: #2b317d;
    --accent-yellow: #fcd015;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-color: #333;
    
    /* Font Families */
    --primary-font: 'Poppins', sans-serif;
}

/* General Styles */
body {
    font-family: var(--primary-font);
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-weight: 400;
}

.lead {
    font-weight: 300;
    font-size: 1.15rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Button Overrides */
.btn {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active {
    background-color: #0e6e77;
    border-color: #0e6e77;
}

.btn-outline-primary {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus, 
.btn-outline-primary:active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

/* Theme Button */
.btn-theme {
    background-color: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    font-weight: 500;
}
.btn-theme:hover, 
.btn-theme:focus, 
.btn-theme:active {
    background-color: #0e6e77;
    border-color: #0e6e77;
    color: white;
}
.btn-outline-theme {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
    font-weight: 500;
}

.btn-outline-theme:hover,
.btn-outline-theme:focus,
.btn-outline-theme:active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}


/* Navbar Theme */
.navbar-theme {
    /*background-color: var(--primary-navy);*/
}

.navbar-theme .navbar-brand {
    /*color: white;*/
    font-weight: 600;
}

.navbar-theme .nav-link {
    /*color: rgba(255, 255, 255, 0.85);*/
    font-weight: 500;
}

.navbar-theme .nav-link:hover,
.navbar-theme .nav-link.active {
   /* color: white; */
}

/* Mobile Toolbar Update */
.mobile-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-navy) !important;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    color: white;
}

.mobile-toolbar .col {
    color: white;
}

.mobile-toolbar i {
    color: white;
}

/* Author avatar for navbar dropdown */
.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-teal);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}




/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-link {
    margin: 0 10px;
    font-weight: 500;
    color: var(--primary-navy) !important;
}

.nav-link:hover {
    color: var(--primary-teal) !important;
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/get-boxes-now-hero.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.9;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-navy);
    line-height: 1.2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Features Section */
.features {
    background-color: white;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(17, 135, 145, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
    background-color: var(--light-gray);
}

.step-card {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author h5 {
    font-weight: 600;
}

/* Pricing */
.pricing {
    background-color: var(--light-gray);
}

.pricing-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    color: var(--primary-navy);
    font-weight: 600;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.pricing-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

/* Popular plan styling with the accent yellow */
.pricing-card.popular-plan {
    transform: scale(1.05);
    border: 2px solid var(--accent-yellow);
    position: relative;
    z-index: 2;
}

.pricing-card.popular-plan .badge {
    background-color: var(--accent-yellow);
    color: var(--dark-gray);
    padding: 0.5em 1em;
    font-weight: 600;
}

.pricing-card.popular-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

/* CTA */
.cta {
    background-color: var(--primary-navy);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-weight: 700;
}

.cta .lead {
    font-weight: 300;
}

.cta .btn-light {
    color: var(--primary-teal);
    font-weight: 600;
}

.cta .btn-light:hover {
    background-color: #e9ecef;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--dark-gray);
    color: white;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-teal);
}

/* Form Styling */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    font-family: var(--primary-font);
    font-weight: 400;
}

.form-text {
    font-size: 0.85rem;
}

/* Authentication Pages */
.split-screen .logo img {
    margin-bottom: 1rem;
}

.split-screen h1 {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.split-screen h2 {
    font-weight: 600;
    color: var(--primary-navy);
}

.split-screen .feature-box h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular-plan {
        transform: none;
    }
    
    .pricing-card.popular-plan:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
}