/*
Theme Name: Bringits
Theme URI: https://bringits.com
Author: Bringits
Author URI: https://bringits.com
Description: bringits site theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Bringits-theme
*/

/* Basic theme setup */
:root {
    --primary-color: #FFD950;
    --secondary-color: #3716DE;
    --text-color: #1B1F1D;
    --background-color: #FFFFFF;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--background-color);
    width: 100%;
    overflow-x: hidden;
}


/* Desktop_Home page */
.desktop_home_page {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0px;
      isolation: isolate;
      position: relative;
      width: 1440px;
      height: 3734.81px;
    }

/* New Home Page Design */
.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #1B1F1D;
    text-align: center;
    margin-bottom: 24px;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1B1F1D;
    margin-bottom: 16px;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
}

.cta-section {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 64px;
    text-align: center;
    margin-top: 80px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #1B1F1D;
    margin-bottom: 16px;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #FFD950;
    color: #1B1F1D;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #0D0D2A;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FFE580;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 48px 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .cta-section {
        padding: 48px 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }
}

