/* AESTHETIC THEME FOR LUCY LUVS TRAVEL */
:root {
    --bg-main: #faf7f5;
    --bg-white: #ffffff;
    --blush: #e5b9b9;
    --blush-dark: #d49a9a;
    --text-dark: #4a4a4a;
    --text-light: #8c8c8c;
    --sand: #e8e2da;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-main); color: var(--text-dark); line-height: 1.8; font-size: 15px; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 25px; }

/* HEADER */
.header { background: var(--bg-white); padding: 25px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 15px rgba(0,0,0,0.02); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-family: var(--font-heading); font-size: 2rem; font-style: italic; color: var(--text-dark); }
.logo span { color: var(--blush-dark); }
.nav-menu { display: flex; gap: 35px; }
.nav-menu a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); }
.nav-menu a:hover, .nav-menu a.active { color: var(--blush-dark); }
.mobile-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }

/* HERO BLOCK */
.hero { padding: 80px 0; text-align: center; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4rem; font-weight: 400; color: var(--text-dark); line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: var(--text-light); max-width: 600px; margin: 0 auto 40px; }
.btn { display: inline-block; padding: 15px 40px; background: var(--blush-dark); color: #fff; border-radius: 30px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 600; transition: background 0.3s; }
.btn:hover { background: #b87c7c; }
.hero-images { display: flex; justify-content: center; gap: 20px; margin-top: 60px; }
.hero-img { width: 300px; height: 400px; object-fit: cover; border-radius: 150px 150px 0 0; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.hero-img.offset { transform: translateY(40px); }

/* VIBE / PHILOSOPHY BLOCK */
.vibe-section { background: var(--bg-white); padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 400; font-style: italic; color: var(--blush-dark); }
.vibe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.vibe-item { padding: 30px; border: 1px solid var(--sand); border-radius: 15px; }
.vibe-icon { font-size: 3rem; margin-bottom: 20px; }
.vibe-item h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; }

/* JOURNAL BLOCK */
.journal-section { padding: 100px 0; }
.journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background: var(--bg-white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 30px; text-align: center; }
.category { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--blush-dark); margin-bottom: 10px; }
.card-body h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; line-height: 1.3; }
.card-body h3 a:hover { color: var(--blush-dark); }
.read-link { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); border-bottom: 1px solid var(--blush); padding-bottom: 3px; }

/* ABOUT PREVIEW BLOCK */
.about-preview { display: flex; align-items: center; gap: 60px; background: var(--blush); padding: 0; border-radius: 20px; overflow: hidden; margin: 100px auto; max-width: 1000px; color: var(--bg-white); }
.about-preview img { width: 45%; height: 100%; object-fit: cover; min-height: 400px; }
.about-text { padding: 40px 60px 40px 0; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; font-style: italic; }
.about-text p { margin-bottom: 25px; color: #fff; font-size: 1.1rem; }
.btn-outline { display: inline-block; padding: 12px 30px; border: 2px solid #fff; color: #fff; border-radius: 30px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
.btn-outline:hover { background: #fff; color: var(--blush-dark); }

/* INSTA GRID BLOCK */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 60px 0; }
.insta-img { aspect-ratio: 1/1; width: 100%; object-fit: cover; border-radius: 8px; transition: opacity 0.3s; }
.insta-img:hover { opacity: 0.8; }

/* NEWSLETTER BLOCK */
.newsletter { background: var(--bg-white); padding: 80px 20px; text-align: center; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.newsletter h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-dark); margin-bottom: 15px; }
.news-form { display: flex; max-width: 500px; margin: 30px auto 0; border-bottom: 1px solid var(--text-dark); padding-bottom: 10px; }
.news-form input { flex: 1; border: none; background: transparent; padding: 10px; font-family: var(--font-body); font-size: 1rem; outline: none; }
.news-form button { background: none; border: none; font-family: var(--font-heading); font-style: italic; font-size: 1.2rem; color: var(--blush-dark); cursor: pointer; }

/* ARTICLE/PAGE SPECIFIC */
.page-top { text-align: center; padding: 80px 20px; }
.page-top h1 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 20px; }
.content-wrapper { max-width: 800px; margin: 0 auto 80px; font-size: 1.1rem; }
.content-wrapper img { border-radius: 15px; margin: 40px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.content-wrapper h2 { font-family: var(--font-heading); font-size: 2.2rem; margin: 50px 0 20px; font-weight: 400; color: var(--blush-dark); }
.content-wrapper h3 { font-family: var(--font-heading); font-size: 1.6rem; margin: 30px 0 15px; font-style: italic; }
.content-wrapper p { margin-bottom: 25px; }
blockquote { font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; text-align: center; margin: 50px 0; color: var(--blush-dark); }

/* FORMS */
.contact-form { background: var(--bg-white); padding: 50px; border-radius: 15px; border: 1px solid var(--sand); }
.input-grp { margin-bottom: 25px; }
.input-grp label { display: block; margin-bottom: 8px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.input-grp input, .input-grp textarea { width: 100%; padding: 15px; border: 1px solid var(--sand); border-radius: 8px; font-family: inherit; font-size: 1rem; background: var(--bg-main); outline: none; }
.input-grp input:focus, .input-grp textarea:focus { border-color: var(--blush-dark); }
.input-grp textarea { height: 150px; resize: vertical; }

/* FOOTER */
.footer { padding: 50px 0; text-align: center; color: var(--text-light); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-images { flex-direction: column; align-items: center; }
    .hero-img.offset { transform: none; }
    .vibe-grid { grid-template-columns: 1fr; }
    .about-preview { flex-direction: column; text-align: center; }
    .about-preview img { width: 100%; height: 300px; min-height: auto; border-radius: 20px 20px 0 0; }
    .about-text { padding: 30px; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; background: var(--bg-white); position: absolute; top: 100%; left: 0; right: 0; padding: 20px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .nav-menu.active { display: flex; }
    .mobile-btn { display: block; }
    .page-top h1 { font-size: 2.5rem; }
}