/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= NEW HEADER ================= */
.header-new {
    width: 100%;
    background: #f5f5f3;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

/* CONTAINER */
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO FIX */
.logo {
    height: 60px;              /* keep header height */
    display: flex;
    align-items: center;
    overflow: visible;
}

.logo img {
    height: 85px;              /* increase logo */
    width: auto;
    object-fit: contain;
}

/* NAV */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #2e7d32;
}

/* CTA BUTTON */
.header-btn a {
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.header-btn a:hover {
    background: #2e7d32;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        z-index: 999;
        border-top: 1px solid #eee;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }
}


/* HERO SECTION */
.hero {
    height: 500px;
    background: url('../images/hero-bg6.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    color: #fff;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: #d1fae5;
}

.hero-desc {
    max-width: 600px;
    margin: 15px auto 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #eee;
}

/* BUTTON GROUP */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline {
    padding: 12px 25px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: #1b5e20;
}

/* ================= ABOUT SECTION ================= */
/* SECTION */
.about-new {
    padding: 80px 6%;
    background: #f5f7f3;
}

/* WRAPPER */
.about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* TEXT */
.about-text {
    flex: 1;
}

/* TAG */
.tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* HEADING */
.about-text h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* DESCRIPTION */
.desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* POINTS */
.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #333;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: #2e7d32;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #1b5e20;
}

/* MOBILE */
@media (max-width: 768px) {

    .about-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .about-img img {
        height: 250px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }
}
/* ================= HOLE SECTION ================= */
.hole-section {
    padding: 90px 8%;
    background: #f4f6f5;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 36px;
    margin-bottom: 60px;
}

/* GRID */
.hole-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.hole-card {
    background: #fff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.hole-card:hover {
    transform: translateY(-10px);
}

/* IMAGE FIX (IMPORTANT) */
.hole-card img {
    width: 100%;
    height: 460px;              /* increased height */
    object-fit: cover;          /* keeps image clean */
    object-position: center;    /* centers image */
    border-radius: 20px;
    margin-bottom: 20px;
}

/* TEXT */
.hole-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.hole-card p {
    color: #666;
    font-size: 15px;
}

@media (max-width: 992px) {
    .hole-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hole-grid {
        grid-template-columns: 1fr;
    }

    .hole-card img {
        height: 390px;
    }
}

/* ================= RATES SECTION ================= */
/* SECTION */
.rates-section-new {
    padding: 80px 8%;
    background: #f4f6f5;
}

/* WRAPPER */
.rates-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */
.rates-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* CONTENT */
.rates-content h2 {
    font-size: 34px;
}

.rates-subtitle {
    margin-bottom: 20px;
    color: #2e7d32;
}

/* TABLE */
.rate-table {
    margin-bottom: 25px;
}

.rate-table h3 {
    margin-bottom: 10px;
}

/* ROW */
.rate-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

/* HEADER */
.rate-row.header {
    font-weight: bold;
    border-bottom: 2px solid #2e7d32;
}

/* SPECIAL */
.rate-special {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}

/* NOTE */
.rate-note {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}
@media (max-width: 768px) {

    .rates-wrapper {
        grid-template-columns: 1fr;
    }

    .rate-row {
        grid-template-columns: 1fr 1fr;
    }

    .rate-row span:first-child {
        grid-column: span 2;
    }

}


/* ================= CONTACT SECTION ================= */
/* SECTION */
.contact-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #eef3ef, #f7f9f8);
}

/* WRAPPER */
.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* ================= FORM ================= */
.contact-form {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 25px;
}

/* INPUTS */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.form-group {
    margin-bottom: 15px;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* ================= INFO ================= */
.contact-info {
    padding: 20px;
}

.contact-info .tag {
    color: #2e7d32;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* INFO BOX */
.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.info-box p {
    margin-bottom: 15px;
}
@media (max-width: 768px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-info h2 {
        font-size: 26px;
    }

    .info-box {
        padding: 15px;
    }

}


/* ================= MAP SECTION ================= */
.map-section {
    width: 100%;
    height: 450px;   /* desktop height */
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}   

@media (max-width: 768px) {
    .map-section {
        height: 300px;
    }
}





/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 200px;
        display: none;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}