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

body {
    background: #f4f6f9;
    color: #333;
}

/* Header */
header {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

nav a:hover {
    color: green;
}

/* Hero */
.hero {
    height: 75vh;
    background: url('https://adocado.in/assets/image/hotel.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 42px;
}

.section {
    padding: 60px 40px;
    background: white;
    margin: 30px auto;
    max-width: 1100px;
    border-radius: 8px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Contact form */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

form button {
    background: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}
/* ===== Luxury Resort Contact Section ===== */

.luxury-contact {
    padding: 100px 20px;
    background: linear-gradient(to right, #fdfcfb, #e2d1c3);
}

.luxury-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.luxury-left {
    flex: 1;
}

.luxury-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.luxury-left p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resort-details p {
    margin: 8px 0;
    font-size: 14px;
}

/* Right Form Box */
.luxury-right {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.luxury-right h3 {
    margin-bottom: 20px;
    color: #333;
}

.luxury-right input,
.luxury-right textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.luxury-right input:focus,
.luxury-right textarea:focus {
    border-color: #b8860b;
    outline: none;
}

.luxury-right button {
    width: 100%;
    padding: 14px;
    background: #b8860b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.luxury-right button:hover {
    background: #8b6508;
    transform: translateY(-2px);
}
/* ---------- GLOBAL ---------- */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ---------- HEADER ---------- */

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #111;
    color: white;
}

.main-header nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 400;
    transition: 0.3s;
}

.main-header nav a:hover,
.main-header nav a.active {
    color: gold;
}

/* ---------- HERO ---------- */

.amenities-hero {
    height: 60vh;
    background: url('../images/pool.jpg') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

/* ---------- AMENITIES GRID ---------- */

.amenities-section {
    padding: 80px 8%;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #555;
}

/* ---------- FOOTER ---------- */

.main-footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}
.amenity-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
}
/* ABOUT HERO */

.about-hero {
    height: 70vh;
    background: url('image/resort.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    background: rgba(0,0,0,0.55);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

.about-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-overlay p {
    font-size: 20px;
}

/* ABOUT CONTENT */

.about-content {
    padding: 80px 10%;
    background: #f8f8f8;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e3c2f;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}
/* HERO SECTION */

.hero {
    height: 100vh;
    background: url('https://adocado.in/assets/image/hotel.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 50px;
    text-align: center;
    color: white;
    border-radius: 12px;
}

.hero-overlay h1 {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
}

.hero-btn {
    background: #d4af37;
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: white;
}

/* EXPERIENCE SECTION */
experience {
    padding: 100px 15%;
    text-align: center;
    background: white;
}

.exp-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1e3c2f;
}

.exp-text p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
    margin: auto;
}
/* HIGHLIGHTS */

.highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 10%;
    background: white;
}

.highlight-card {
    background: #ffffff;
    padding: 30px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card h3 {
    margin-bottom: 15px;
    color: #1e3c2f;
}

/* FOOTER */

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}
/* ABOUT PAGE HERO SECTION */

.about-hero {
    height: 80vh;
    background: url('image/view.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.about-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-overlay p {
    font-size: 18px;
}