/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: #333;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header & Navigation */
header {
    background: linear-gradient(to right, #007bff, #00c6ff); /* Blue gradient */
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #e6e6e6;
}

/* Hero Section */
.hero {
    background: url('cagwait-hero.jpg') no-repeat center center/cover;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: -70px; /* Adjust for fixed header */
    padding-top: 70px; /* Push content down to avoid being under header */
}

.hero::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.0em;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
}

.btn {
    display: inline-block;
    background: #00c6ff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #00a0d1;
}

/* Section Styling */
.section {
    padding: 80px 0;
    text-align: center;
    scroll-margin-top: 70px; /* Offset for fixed header */
}

.section h2 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #00c6ff;
    border-radius: 2px;
}

.section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.bg-light {
    background-color: #eef;
}

/* Grid Container for Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #007bff;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.card ul li::before {
    content: '\2713'; /* Checkmark */
    color: #28a745;
    position: absolute;
    left: 0;
}

.activity-icon {
    font-size: 3em;
    margin-top: 20px;
    color: #007bff;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: auto;
    cursor: pointer;
    border: none;
    text-align: center;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-card h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.review-stars {
    color: gold; /* Or a suitable star icon */
    font-size: 1.2em;
    margin-bottom: 10px;
}

.reviewer {
    font-style: italic;
    margin-top: 15px;
    text-align: right;
    color: #666;
}

.note {
    font-size: 0.9em;
    color: #777;
    margin-top: 40px;
}

/* Location Section */
.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0 10px 10px 10px;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .section {
        padding: 60px 0;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .logo {
        font-size: 1.5em;
    }
}