/* Apply Google Fonts */
body {
    font-family: 'Lora', serif;
    background-color: #0d0d0d;
    color: #f1f1f1;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background-image: url('../images/image1.png');
    background-size: 120%; /* "Zoomed out" background */
    background-position: top center; /* Always show the top of the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    height: 50vh; /* Reduce height of the hero section */
    padding-top: 40px; /* Push content down slightly */
    text-align: center;
    padding: 0 20px;
}

.hero .container {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 20px;
    border: 2px solid #4ca1af; /* Border around the text */
    border-radius: 10px; /* Rounded corners */
    max-width: 800px; /* Limit the width to reduce space */
    margin: 0 auto; /* Center the container */
}

.hero h1 {
    font-family: 'Montserrat', sans-serif; /* Heading uses a different font */
    font-size: 3rem; /* Reduce font size */
    color: #4ca1af;
    margin-bottom: 10px; /* Reduce space below heading */
}

.hero p {
    font-size: 1.2rem; /* Slightly smaller paragraph text */
    color: #f1f1f1;
    margin-top: 10px; /* Less space above paragraph */
}

.hero h1, .hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
}

/* Current Work Section */
.current-work {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.current-work h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4ca1af;
    margin-bottom: 40px;
}

.work-items {
    display: flex;
    justify-content: space-around;
}

.work-item {
    background-color: #262626;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
    text-align: center;
}

.work-item h3 {
    font-size: 1.8rem;
    color: #4ca1af;
    margin-bottom: 10px;
}

.work-item p {
    font-size: 1.1rem;
    color: #f1f1f1;
}

/* Gallery Section */
.gallery {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4ca1af;
    margin-bottom: 40px;
}

.gallery-items {
    display: flex;
    justify-content: space-around;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.gallery-item p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #f1f1f1;
}
