
/* Reset margins, padding, and box-sizing for everything */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*  styles for the entire website and pages */
body {
    font-family: Arial, sans-serif; /* Default font for all words */
    line-height: 1.6; /*  this sets the line height */
    background-color: #afb1b0; /* this sets the background colour for every website page*/
}

header {
    background-color: #333; /* Background color for header */
    color: #fff; /* Text color for header */
    padding: 1rem; /* Adding padding to header */
}

header h1 {
    margin: 0; 
}

nav ul {
    list-style-type: none; /* this Removes bullet points from nav ul */
}

nav ul li {
    display: inline;
    margin-right: 1rem; 
}

nav ul li a {
    color: #fff; /* this is the text color for navigation links */
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline; /* this Adds underline effect on hover */
}

main {
    padding: 2rem;
}
/* copyright bit */
footer {
    background-color: #333; /* this sets the background color for footer */
    color: #fff; /*  text colour for footer */
    text-align: center; 
    padding: 1rem; 
}

/* Additional CSS specific to the home index page */


/* explore world... subheading */
#hero h2 {
    font-size: 3em; /* Setting font size for  subheading */
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

/* discover... line */
#hero p {
    font-size: 1.2em; /* this Setting font size for  paragraph */
    margin-bottom: 40px; 
}


/* button */
#hero a {
    background-color: #ff6600; /* Background color for button */
    color: #fff; /* Text color for  button */
    padding: 10px 20px; /* Adding padding to  button */
    text-decoration: none; /* Removing default underline from button */
    border-radius: 5px; /* Adding border radius to button */
    transition: background-color 0.3s; /* Adding smooth transition effect */
}



/* Center the motorbike image */
.banner-image {
    display: block;
    margin: 0 auto; 
    max-width: 100%; 
    height: auto; 
    margin-top: 20px; 
}