/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background-color: #2f4f4f;
    color: #fff;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.navbar a {
    color: #fff;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

/* About Section */
.about-home {
    background-color: #fff;
    padding: 3rem 1rem;
}

.about-home h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-home p {
    max-width: 800px;
    margin: 0.5rem auto;
    text-align: center;
    font-size: 1.05rem;
}

/* Features Section */
.features {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
}

.features h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2f4f4f;
    font-weight: bold;
}



/* Local Info Section */
.local-info {
    background-color: #fff;
    padding: 3rem 1rem;
}

.local-info h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.local-info p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 1.05rem;
}

/* Call to Action */
.cta {
    background-color: #2f4f4f;
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
}

.cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cta-button {
    background-color: #ffd700;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6c200;
}


/* About Section Flex Layout */
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.about-image-container {
    flex: 1 1 400px;
    max-width: 500px;
}

.about-text {
    flex: 1 1 400px;
    max-width: 600px;
    text-align: left;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.amenity-cards {
    padding: 3rem 1rem;
    background-color: #fff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
}

.amenity-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.contact-section {
    padding: 3rem 1rem;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-info,
.contact-form {
    flex: 1 1 400px;
    max-width: 500px;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p,
.contact-info a {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.success {
    color: green;
    margin-bottom: 1rem;
}

.error {
    color: red;
    margin-bottom: 1rem;
}

.edit-section a {
    color: #2f4f4f;
    text-decoration: underline;
    font-weight: 500;
}

.edit-section a:hover {
    color: #1a2d2d;
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: #2f4f4f;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 2px 0;
}
.btn:hover {
    background: #244242;
}



/* Footer */
.site-footer {
    background-color: #2f4f4f;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}
