body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

.hero {
    background: url('images/rivermist.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
    margin: 10px 0 20px;
}

.about-section, .accommodation-section, .contact-section {
    padding: 5px 0;
    text-align: center;
}

.about-section h2, .accommodation-section h2, .contact-section h2, .tariff-section h2 {
    font-size: 2.0rem;
    margin-bottom: 10px;
}

.cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 20px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.card p {
    font-size: 1rem;
    color: #666;
}
.contact-section {
      max-width: 800px;
      margin: auto;
      padding: 20px;
      font-family: Arial, sans-serif;
    }
    .contact-section h2 {
      text-align: center;
    }
    .contact-item {
      display: flex;
      align-items: center;
      margin: 10px 0;
    }
    .contact-item img {
      margin-right: 10px;
    }
    .contact-item a {
      text-decoration: none;
      color: #000;
      font-size: 18px;
    }
    .contact-item a:hover {
      color: #007BFF; /* Change to your preferred hover color */
    }
/*    
.contact-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
*/

/* Tariff Section */
.tariff-section {
    padding: 10px 0;
    text-align: center;
}


.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.tariff-table th, .tariff-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tariff-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.tariff-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tariff-table tr:hover {
    background-color: #ddd;
}

.tariff-table ul {
    list-style-type: none;
    padding: 0;
}

.tariff-table ul li {
    padding: 5px 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        flex: 1 1 100%;

    }
    .tariff-table {
        font-size: 0.9rem; /* Slightly reduce the font size on smaller screens */
    }

    .tariff-table th, .tariff-table td {
        padding: 6px;
    }
}
