:root {
    --primary-accent: #ff5722; /* Main accent color */
    --secondary-accent: #4caf50; /* Secondary accent color */
    --neutral-light: #ffffff; /* Light background color */
    --neutral-dark: #212121; /* Dark text color */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Shadow color */
    --overlay-bg: rgba(0, 0, 0, 0.7); /* Overlay background */


    --dandelion-yellow: #F2E638; /* Dark text color */
    --goldenrod: #F2BE22; /* Dark text color */
    --orange-peel: #F28705; /* Dark text color */
    --jet-black: #0D0D0D; /* Dark text color */
    --fire-engine-red: #D92211; /* Dark text color */
}

/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


/* Hero Section Styling */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;              /* Set the hero section to fill the entire viewport */
    text-align: center;
    background-image: url('hero-background-image.svg'); /* Replace with your provided image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px;              /* Add padding for smaller screens */
}

/* Hero Content */
.hero-content {
    background: rgba(0, 0, 0, 0); /* Dark overlay for text readability */
   
    border-radius: 8px;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: var(neutral-light);
    max-width: 100%;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    max-width: 100%;
    margin-bottom: 20px;
    color: var(--jet-black);
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: var(--neutral-light);
    background: var(--primary-accent);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff6347;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.75rem;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .hero {
        height: 85vh;
    }


    

    .hero-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .footer {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--neutral-light);
    background: var(--primary-accent);
}