/* style.css */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff9a7; /* Light yellow background */
}
/* Header styling */
header {
    background: #9bf62c;
    padding: 0.75rem;
    border: 3.5px solid #2d60fb;
    border-radius: 40px; /* Adds rounded corners */
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligns logo left and other content right */
}

header .logo {
    width: 400px; /* Adjust based on actual logo size */
    border-radius: 10px; /* Adds rounded corners */
    height: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

header h1 {
    margin: 0;
    color: #0616fa;
    font-size: 1.5rem;
}

header .nav-links {
    display: flex;
    list-style: none;
    margin-top: 1rem;
}

header .nav-links li {
    margin-left: 1rem;
}

header .nav-links a {
    color: #0616fa;
    text-decoration: none;
    font-size: 1rem;
}

header .nav-links a:hover {
    color: #fff;
    background-color: #0616fa;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

/* General Navbar Styling */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end; /* Initially aligned to the right for larger screens */
}

nav ul li {
    display: inline-block;
    transition: transform 0.3s ease;
}

nav ul li:hover {
    transform: scale(1.2);
}

nav ul li a {
    text-decoration: none;
    color: #0616fa;
    font-weight: bold;
    padding: 0.5rem 1rem;
    display: block;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header .logo {
        margin-bottom: 1rem;
    }

    header .nav-links {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        width: 100%; /* Ensure the nav takes the full width */
        justify-content: center; /* Center the navigation links */
        text-align: center;
    }

    nav ul li {
        margin-bottom: 1rem;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 100%; /* Make the links take full width */
        text-align: center; /* Center the text inside the links */
    }
}

/* Mobile (smaller than 480px) */
@media (max-width: 480px) {
    header .container {
        padding: 0.5rem;
    }

    header .logo {
        width: 80%; /* Adjust logo size */
    }

    header h1 {
        font-size: 1.2rem;
        text-align: center; /* Center-align title */
    }

    nav ul {
        gap: 0.5rem;
    }

    nav ul li a {
        padding: 0.75rem;
        font-size: 1rem;
        text-align: center; /* Center the text */
    }
}

#custom-cursor {
    position: absolute;
    width: 100px; /* Length of the streak */
    height: 5px;  /* Thinness of the streak */
    background-color: #ccff00; /* Neon yellow */
    border-radius: 20px; /* Slightly rounded edges */
    pointer-events: none;
    z-index: 1000; /* Ensure it's on top */
    box-shadow: 0 0 15px #ccff00, 0 0 30px #ccff00, 0 0 60px #ccff00; /* Neon yellow glow */
    transform: translate(-50%, -50%); /* Center the streak at the cursor */
}

/* Styling for text with a border around it */
.border-text {
    color: white; /* White text color */
    -webkit-text-stroke: 0.5px black; /* Black border around the letters */
    font-weight: bold; /* Makes the text bold */
}

.facebook{
    text-align: Top;
    border: 3px solid #2d60fb;
    border-radius: 10px; /* Adds rounded corners */
}

/* Hero section styling */
.hero {
    position: relative; /* To position the overlay */
    background: url('Smarties.png') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    border: 3.5px solid #2d60fb;
    border-radius: 40px; /* Adds rounded corners */
    padding: 2rem 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Black overlay with 40% opacity */
    border-radius: 40px;
    z-index: 1; /* Ensures overlay stays behind the text */
}

.hero h2,
.hero p {
    position: relative;
    z-index: 2; /* Makes sure text is above the overlay */
    font-size: 2.5rem;
}



.hero h3 {
    font-size: 1.5rem; /* Increase font size */
    color: #ccff00; /* Use white for high contrast */
    text-align: center; /* Center-align the text */
    background-color: rgb(246, 51, 51); /* Semi-transparent background to improve contrast */
    padding: 0.5rem 0.5rem; /* Add padding for better spacing */
    border-radius: 5px; /* Rounded corners for the background */
    display: inline-block; /* So the background wraps around the text */
    
}


/* Section styling */
section {
    padding: 2rem 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tariffs-container {
    display: flex;
    justify-content: space-between; /* Space between the two tariff sections */
    gap: 2rem; /* Adjusts space between the sections */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.tariff {
    flex: 1; /* Ensures both sections take equal width */
    min-width: 300px; /* Minimum width for each section */
    border: 2px solid #2d60fb; /* Optional: border around each tariff section */
    padding: 1rem;
    border-radius: 10px; /* Rounded corners for each section */
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Adjusts space between the image and the text */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.facebook {
    width: 20px; /* Adjust the size of the Facebook icon */
    height: auto; /* Keeps the aspect ratio */
    vertical-align: middle; /* Aligns with the text */
    border: none; /* Removes any existing borders */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.facebook-link:hover .facebook {
    transform: scale(1.5); /* Scale the icon to 1.5 times its size on hover */
}


/* Adjust for smaller screens */
@media (max-width: 768px) {
    .tariffs-container {
        flex-direction: column; /* Stacks the sections on top of each other */
    }

}


/* Button styling */
button {
    padding: 0.5rem 1rem;
    background: #3e9e03; /* Green background */
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

button:hover {
    background: #8d73a0; /* Purple background on hover */
}

/* Form styling */
form {
    display: grid;
    gap: 1rem;
}

label {
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Footer styling */
footer {
    background: #3e9e03; /* Green background */
    padding: 1rem;
    text-align: center;
    border-top: 2px solid #fcfcfb; /* Off-white border */
    color: #faf9f9; /* Off-white text */
}

/* Paw Patrol styling */
.paw-patrol {
    position: fixed;
    bottom: 20px; /* Slightly raise from the bottom */
    right: 20px; /* Slightly raise from the right */
    background: #fff;
    border: 2px solid #f57f17;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none; /* Initially hidden */
    align-items: center;
    gap: 1rem;
    max-width: 500px; /* Limit max width */
    z-index: 1000; /* Ensure it appears above other elements */
}

.paw-patrol img {
    width: 60px; /* Adjust size for smaller screens */
    height: auto; /* Keeps the aspect ratio */
    border-radius: 50%;
}

.paw-patrol p {
    margin: 0;
    font-size: 1rem; /* Default font size */
}

.close-button {
    background: none;
    border: none;
    font-size: 0.70rem; /* Size of the close button */
    color: #f57f17; /* Color for the close button */
    cursor: pointer; /* Changes cursor to pointer */
    position: absolute; /* Position it within the paw patrol container */
    top: 0.5px; /* Adjust as needed */
    right: 3px; /* Adjust as needed */
    z-index: 1001; /* Ensure it’s above the Paw Patrol container */
}

.close-button:hover {
    color: #d85e0e; /* Darken on hover for effect */
}

/* Responsive Design for Paw Patrol */
@media (max-width: 768px) {
    .paw-patrol {
        width: 170px; /* Adjust width for medium screens */
    }

    .paw-patrol img {
        width: 50px; /* Adjust image size for medium screens */
    }

    .paw-patrol p {
        font-size: 0.9rem; /* Adjust text size for medium screens */
    }
}

@media (max-width: 480px) {
    .paw-patrol {
        width: 130px; /* Adjust width for small screens */
        bottom: 10px; /* Raise slightly more from the bottom */
        right: 10px; /* Raise slightly more from the right */
    }

    .paw-patrol img {
        width: 40px; /* Further adjust image size for small screens */
    }

    .paw-patrol p {
        font-size: 0.8rem; /* Further adjust text size for small screens */
    }
}


:root {
    --primary-color: #9bf62c;
    --secondary-color: #0616fa;
}

.contact-us {
    padding: 2rem 1rem;
    background-color: #91ccf4; /* Light background color */
    border: 2px solid #2d60fb; /* Border similar to other sections */
    border-radius: 10px; /* Rounded corners */
    margin: 2rem 0; /* Margin to separate from other sections */
}

.contact-us h2 {
    color: #0616fa; /* Change this to match your design */
}

.contact-us p {
    line-height: 1.6;
}


header {
    background: var(--primary-color);
}

header h1 {
    color: var(--secondary-color);
}
.location-link {
    display: inline-block; /* Allows scaling to take effect properly */
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover */
}

.location-link:hover {
    transform: scale(1.2); /* Scale the link by 1.2x when hovered */
    color: #2b68f7; /* Optional: Change color on hover for emphasis */
}
