/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffe6f2; /* Light pink background */
    color: #333; /* Dark text for contrast */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header and Navigation Styling */
header {
    background-color: #ff99cc; /* Bright pink for the header */
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allows the navigation to wrap on smaller screens */
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff; /* White text for navigation links */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff66b2; /* Slightly darker pink hover effect */
}

/* Hero Section */
#hero {
    background-image: url('pinkrobotwall.jpg'); /* Wallpaper image */
    background-repeat: repeat;
    background-size: 200px 200px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff; /* White text for contrast */
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#about {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffe0f0; /* Light pink background to match your theme */
}

#about h2 {
    font-family: 'Montserrat', sans-serif; /* A cool, modern font */
    font-weight: 700; /* Bold font for the heading */
    font-size: 2.5rem; /* Larger font for the heading */
    color: #d40078; /* Deep pink for the heading */
    margin-bottom: 1rem;
}

#about p {
    font-family: 'Lora', serif; /* A nice serif font for the body text */
    font-weight: 500; /* Semi-bold font */
    font-size: 1.25rem; /* A bit larger font for better readability */
    color: #333; /* Dark text for contrast */
    max-width: 800px; /* Restricts the width of the text for readability */
    margin: 0 auto; /* Center the text */
    line-height: 1.6; /* Add some line spacing for readability */
}

.cta-button {
    background-color: #ff66b2; /* Hot pink call-to-action button */
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff3399; /* Darker pink hover effect */
}

/* Section Headings */
h2 {
    text-align: center;
    margin: 2rem 0;
    color: #cc0099; /* Dark pink section titles */
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* More flexible grid */
    gap: 20px;
    padding: 1rem;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Styling */
footer {
    background-color: #ff99cc; /* Bright pink footer */
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    width: 100%;
}

/* Media Queries for Responsiveness */

/* For small devices like phones */
@media (max-width: 600px) {
    #hero {
        height: 70vh; /* Adjust height for smaller screens */
    }

    .hero-content h1 {
        font-size: 2.5rem; /* Smaller heading on small screens */
    }

    .hero-content p {
        font-size: 1.2rem; /* Smaller text for the hero section */
    }

    .cta-button {
        padding: 0.8rem 1.5rem; /* Adjust button padding */
        font-size: 1rem;
    }

    nav ul {
        flex-direction: column; /* Stack navigation links vertically */
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}

/* For tablets */
@media (min-width: 601px) and (max-width: 1024px) {
    #hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 3rem; /* Slightly smaller text for tablets */
    }

    .cta-button {
        font-size: 1.1rem;
    }
}

/* For desktops */
@media (min-width: 1025px) {
    #hero {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 4rem; /* Full-size text for larger screens */
    }

    .cta-button {
        font-size: 1.2rem;
    }
}
