/*
Theme Name: ZM PPC Landing
Description: Custom landing page theme for Zilla Metrics PPC
Version: 1.0.0
Author: Custom Development
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Font Family Classes */
.font-barlow {
    font-family: 'Barlow', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Custom Colors */
.bg-primary {
    background-color: #DD6C00;
}

.bg-primary-dark {
    background-color: #B55E0A;
}

.bg-secondary {
    background-color: #164B80;
}

.bg-accent {
    background-color: #FA8D25;
}

.bg-danger {
    background-color: #EE4130;
}

/* Header Specific Styles */
.bg-banner-background {
    background-image: url('./assets/images/banner-background.png');
    background-size: 100% 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
}

/* Fallback for Tailwind CSS */
@media (max-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:text-\[24px\] {
        font-size: 24px;
    }
    
    .sm\:leading-\[36px\] {
        line-height: 36px;
    }
    
    .sm\:text-\[27px\] {
        font-size: 27px;
    }
    
    .sm\:leading-\[32px\] {
        line-height: 32px;
    }
    
    .sm\:text-\[48px\] {
        font-size: 48px;
    }
    
    .sm\:leading-\[72px\] {
        line-height: 72px;
    }
    
    .sm\:max-w-\[1013px\] {
        max-width: 1013px;
    }
    
    .sm\:max-w-\[984px\] {
        max-width: 984px;
    }
    
    .sm\:mt-\[41px\] {
        margin-top: 41px;
    }
    
    .sm\:mb-\[7px\] {
        margin-bottom: 7px;
    }
    
    .sm\:mb-\[70px\] {
        margin-bottom: 70px;
    }
}

/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
}

/* Ensure proper spacing */
.gap-\[9px\] {
    gap: 9px;
}

.gap-\[5px\] {
    gap: 5px;
}

.gap-\[10px\] {
    gap: 10px;
}

/* Custom spacing utilities */
.px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px;
}

.py-\[9px\] {
    padding-top: 9px;
    padding-bottom: 9px;
}

.pt-\[22px\] {
    padding-top: 22px;
}

.pb-\[26px\] {
    padding-bottom: 26px;
}

.pt-8 {
    padding-top: 2rem;
}

.mt-\[32px\] {
    margin-top: 32px;
}

.mb-\[20px\] {
    margin-bottom: 20px;
}

.mb-\[50px\] {
    margin-bottom: 50px;
}

.mb-\[-70px\] {
    margin-bottom: -70px;
}
