/*
Theme Name: Agrawal Toys
Theme URI: https://dodigitals.org/
Author: Do Digitals
Author URI: https://dodigitals.org/
Description: Custom Theme for Agrawal Toys with Bootstrap 5, Slick Slider & Brand Colors.
Version: 1.2.0
Text Domain: agrawaltoys
*/

/* 1. Google Fonts Import (Playful fonts for Toy Shop) */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Nunito:wght@400;700&display=swap');

/* 2. ROOT VARIABLES (Global Settings) */
:root {
    /* Brand Colors extracted from Logo */
    --primary-yellow: #fce205; /* Logo Text Yellow */
    --secondary-red: #e71d36;  /* Truck Red */
    --accent-black: #000000;   /* Outlines */
    --accent-blue: #3a86ff;    /* Drum Detail Blue */
    --bg-light: #f9f9f9;       /* Light Background */
    
    /* Typography */
    --font-heading: 'Fredoka', sans-serif; /* Rounded for Headings */
    --font-body: 'Nunito', sans-serif;     /* Clean for Text */
    
    /* Font Sizes */
    --fs-h1: 2.5rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-body: 1rem;
    
    /* Spacing & Borders */
    --border-radius: 12px;     /* Soft rounded corners */
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* 3. Global Styles using Variables */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    background-color: var(--bg-light);
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-red);
    transition: 0.3s;
}

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

/* 4. Bootstrap & Layout Fixes */
.container {
    max-width: 1200px; /* Thoda wide rakha hai */
}

/* Navbar Customization */
.navbar {
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary-yellow);
}

.navbar-brand img {
    max-height: 70px; /* Logo thoda bada dikhega */
    width: auto;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-black) !important;
}

.nav-link:hover {
    color: var(--secondary-red) !important;
}

/* 5. Button Styles (Theme specific) */
.btn-primary {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    font-family: var(--font-heading);
    border-radius: var(--border-radius);
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: var(--accent-black);
    border-color: var(--accent-black);
}

.btn-warning {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--accent-black);
    font-family: var(--font-heading);
    font-weight: bold;
}

/* 6. Slick Slider Fixes */
.slick-prev:before, .slick-next:before {
    color: var(--secondary-red) !important;
    font-size: 30px;
}

/* Elementor Width Fix */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

/* Custom Contact Form Styles */
.custom-contact-form input,
.custom-contact-form textarea {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    font-size: 14px;
    color: #333;
    text-transform: uppercase; /* Placeholder uppercase dikhane ke liye */
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    background-color: #fff;
    border-color: #aaa;
    box-shadow: none;
    outline: none;
}

/* Button Style like Screenshot */
.custom-contact-form .btn-submit {
    background-color: #1e73be; /* Blue Color */
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s;
}

.custom-contact-form .btn-submit:hover {
    background-color: #155a96; /* Darker Blue on Hover */
}

/* Placeholder color formatting */
::placeholder {
    color: #888;
    opacity: 1;
}

/* -----------------------------------------------------------
   CUSTOM MENU STYLES - Agrawal Toys
----------------------------------------------------------- */

/* 1. Menu Items Container */
#primaryNavbar .navbar-nav {
   align-items: center;
    gap: 30px;
    font-size: 18px;
}
#primaryNavbar .navbar-nav a {
    color: #000;
}

/* 2. Menu Links Styling */
#primaryNavbar .nav-link {
    font-family: 'Fredoka', sans-serif; /* Playful Font */
    font-size: 18px;
    font-weight: 600;
    color: #333 !important; /* Black Text (Padhne me aasan) */
    padding: 8px 20px !important; /* Thoda space charo taraf */
    border-radius: 50px;    /* Gol kinare (Pill shape) */
    transition: all 0.3s ease; /* Smooth animation */
}

/* 3. Hover Effect (Mouse le jane par) */
#primaryNavbar .nav-link:hover {
    background-color: var(--secondary-red); /* Red Background */
    color: #fff !important; /* White Text */
    transform: translateY(-2px); /* Thoda sa upar uthega */
    box-shadow: 0 4px 10px rgba(231, 29, 54, 0.3); /* Halka sa shadow */
}

/* 4. Active Page (Jo page khula hai wo alag dikhe) */
.current-menu-item .nav-link {
    color: var(--secondary-red) !important;
    font-weight: 700;
}

/* 5. Contact Us Button Style (Optional - Agar last item ko button banana ho) */
/* Ye code last menu item ko button bana dega */
#primaryNavbar .navbar-nav li:last-child .nav-link {
    background-color: var(--primary-yellow);
    color: #000 !important;
    border: 2px solid var(--primary-yellow);
}

#primaryNavbar .navbar-nav li:last-child .nav-link:hover {
    background-color: transparent;
    border-color: #000;
    color: #000 !important;
}
.download-app-footer-box {
	    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.social-app-footer-box {
	 display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
.social-app-footer-box ul {
    list-style: none;
}
.social-app-footer-box ul svg {
	fill:#fff;
}
.widget_nav_menu ul {
    list-style: none;
	padding-left:0;
}
.widget_nav_menu ul a {
	color:#fff;
	line-height: 40px;
}

/* =========================================
   TEAM SECTION STYLES
   ========================================= */

/* Card Container */
.team-card {
    background-color: #fff;       /* White Background */
    padding: 30px 20px;           /* Inner Spacing */
    border-radius: 8px;           /* Rounded Corners */
    text-align: center;           /* Center Text */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Light Shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;    /* Very Light Border */
    height: 100%;
}

/* Hover Effect */
.team-card:hover {
    transform: translateY(-5px);  /* Thoda upar uthega */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Round Image */
.team-img-box {
    margin-bottom: 20px;
}

.team-img-box img {
    width: 100px;                 /* Size set kiya */
    height: 100px;
    border-radius: 50%;           /* Gol (Circle) banaya */
    object-fit: cover;            /* Image kharab nahi hogi */
    border: 3px solid #fff;       /* Photo ke charo taraf white border */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Typography */
.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Fredoka', sans-serif;
}

.team-role {
    font-size: 0.9rem;
    color: #888;                  /* Grey Text */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}