@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Playfair+Display:wght@500;700&display=swap');

:root {
    --dark: #0f172a;
    --gold: #d4af37;
    --light: #f8fafc;
    --muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* HEADER */
header {
    background: linear-gradient(to right, #020617, #0f172a);
    color: white;
    padding: 30px 60px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    letter-spacing: 1px;
}

header p {
    color: var(--muted);
    margin-top: 5px;
}

nav {
    margin-top: 15px;
}

nav a {
    color: white;
    margin-right: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1528605248644-14dd04022da1') center/cover;
    color: white;
    padding: 120px 40px;
    text-align: center;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #e5e7eb;
}

/* FEATURES */
.features {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    padding: 20px 20px 5px;
}

.card p {
    padding: 0 20px 25px;
    color: #475569;
}

/* MEMORY SECTION */
.memory {
    background: #020617;
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.memory h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.memory p {
    max-width: 750px;
    margin: auto;
    color: #cbd5f5;
}

.memory img {
    margin-top: 40px;
    width: 80%;
    max-width: 700px;
    border-radius: 20px;
}

/* GALLERY */
.gallery {
    padding: 80px 60px;
}

.gallery h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.08);
}

/* CONTACT / BOOKING */
.contact {
    padding: 80px 40px;
    background: #f1f5f9;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
}

.contact p {
    color: #475569;
    margin-bottom: 30px;
}

form {
    max-width: 520px;
    margin: auto;
}

input, textarea, select {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

button {
    background: linear-gradient(to right, #d4af37, #b8962e);
    color: black;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 20px;
}
