/* Grinter Friends | Deontae Wills aka Mely */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #555;
    background-color:#f8f8f8;
}

h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
    margin-bottom: 20px;
}

h2, h3, h4 {
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */

nav {
    position: fixed;
    width: 100%;
    background-color: #f8f8f8;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 90px;
    width: 90px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links ul li {
    font-weight: 600;
}

.nav-links li {
    font-size: large;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials i {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-socials i:hover {
    color: #007bff;
}

/* Header nav Css */

.header-section {
    position: relative;
    background-color: #2c3e50;
    height: 100vh;
    z-index: 1;
}

.header-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f5f5f5ed;
    text-align: center;
}

.header-h1-txt {
    font-size: 2.5rem;
}

.header-h1-txt h1 {
    color: #f8f8f8;
}

.header-p-txt {
    font-size: 1.4rem;
}

/* Available Rentals Section */
/* Event Space Styling */
.event-space {
    background-color: #f3f3f3;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-header {
    text-align: center;
}

.event-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.event-image{
    width: 100%;
    height: 40rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.rental-info {
    text-align: left;
    margin: 40px 0;
}

.rental-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.rental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.rental-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.rental-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.amenities {
    margin-top: 40px;
}

.amenities h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity {
    text-align: center;
}

.amenity img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.picnic-shelter {
    text-align: center;
    margin-top: 60px;
}

.picnic-shelter h3 {
    color: #2c3e50;
}

.picnic-shelter img {
    width: 100%;
    max-height: 400px;
    object-fit: contain; 
    border-radius: 8px;
    margin: 20px auto; 
    display: block;
}


.alcohol-policy {
    margin-top: 40px;
    text-align: left;
}

.alcohol-policy h3 {
    color: #2c3e50;
}

.alcohol-policy p {
    font-size: 1rem;
}

.alcohol-policy a {
    color: #007bff;
    text-decoration: underline;
}

.alcohol-policy a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rental-grid, .amenities-grid {
        grid-template-columns: 1fr;
    }

    .event-header h2 {
        font-size: 2.4rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}


/* Why Rent Section */
.why-rent {
    padding: 60px 0;
    background-color: #fff;
}
.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.benefit {
    text-align: center;
    flex: 1;
}
.benefit i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}
.testimonial p {
    font-style: italic;
}
.testimonial h4 {
    margin-top: 15px;
    color: #333;
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 2rem;
    color: #007bff;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.info-item h3, .info-item p {
    margin: 0;
}


.contact-form {
    flex: 1;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-about,
.footer-links,
.footer-social {
    flex: 1;
    margin: 0 20px;
}

.footer-about h3,
.footer-links h4,
.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-social .social-icons a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
}
