:root {
    --bg-color: #faf9f6;
    --text-primary: #1a1a1a;
    --text-light: #666666;
    --accent: #e07a5f;
    --accent-hover: #c86349;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-handwriting: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.handwriting { font-family: var(--font-handwriting); font-weight: 700; color: var(--accent); text-transform: none; font-size: 2.5rem; letter-spacing: normal; line-height: 1; display: inline-block; transform: rotate(-5deg); }

/* Floating Pill Buttons */
.btn {
    display: inline-block; padding: 0.8rem 2rem; border-radius: 50px;
    font-weight: 600; text-decoration: none; font-size: 0.9rem; text-transform: uppercase;
    letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-primary { background-color: var(--accent); color: white; }
.btn-primary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 25px rgba(224, 122, 95, 0.4); background-color: var(--accent-hover); }
.btn-outline { background-color: white; color: var(--text-primary); border: 2px solid var(--text-primary); box-shadow: 8px 8px 0px rgba(0,0,0,0.1); }
.btn-outline:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px rgba(0,0,0,0.15); }
.btn-lg { padding: 1.2rem 3rem; font-size: 1rem; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transition: all 0.3s;
}
.navbar.scrolled { background-color: rgba(250, 249, 246, 0.95); backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--text-primary); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }

/* Hero Parallax */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.parallax-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover; background-position: center; background-attachment: fixed;
    z-index: -1; filter: brightness(0.7);
}
.hero-content { text-align: center; color: white; position: relative; z-index: 1; max-width: 800px; padding: 2rem; }
.hero-content .handwriting { color: white; transform: rotate(-5deg) translateY(20px); font-size: 3.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-content h1 { font-size: 5rem; margin-bottom: 1.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.2); line-height: 1.1; }
.hero-content p { font-size: 1.2rem; margin-bottom: 3rem; font-weight: 300; }

/* Destinations (Polaroids) */
.destinations { padding: 8rem 0; background-image: radial-gradient(#ddd 1px, transparent 1px); background-size: 20px 20px; }
.section-title { text-align: center; margin-bottom: 5rem; }
.section-title h2 { font-size: 3rem; }
.polaroid-gallery { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 2rem; }
.polaroid {
    background: white; padding: 15px 15px 40px 15px; width: 320px;
    box-shadow: 5px 10px 25px rgba(0,0,0,0.15); transition: transform 0.4s ease;
    cursor: pointer; position: relative;
}
.polaroid-img { width: 100%; height: 300px; overflow: hidden; background: #eee; }
.polaroid-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(20%) contrast(1.1); transition: transform 0.5s; }
.polaroid:hover .polaroid-img img { transform: scale(1.05); }
.polaroid-caption { text-align: center; margin-top: 15px; }
.polaroid-caption h3 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 5px; }
.polaroid-caption .handwriting { font-size: 1.8rem; transform: rotate(-2deg); }

.polaroid-1 { transform: rotate(-6deg); z-index: 1; }
.polaroid-2 { transform: rotate(3deg) translateY(-20px); z-index: 2; }
.polaroid-3 { transform: rotate(-4deg) translateY(20px); z-index: 1; }
.polaroid-1:hover, .polaroid-2:hover, .polaroid-3:hover { transform: scale(1.05) rotate(0deg); z-index: 10; box-shadow: 10px 20px 40px rgba(0,0,0,0.2); }

/* About Layered */
.about-layered { padding: 8rem 0; background-color: white; overflow: hidden; }
.about-container { display: flex; align-items: center; gap: 5rem; }
.about-images { flex: 1; position: relative; height: 600px; }
.img-back { position: absolute; width: 70%; height: 80%; object-fit: cover; top: 0; left: 0; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.img-front { position: absolute; width: 60%; height: 70%; object-fit: cover; bottom: 0; right: 0; border-radius: 10px; border: 15px solid white; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.stamp { position: absolute; top: 40%; left: 40%; transform: rotate(-15deg); font-size: 3rem; background: var(--accent); color: white; padding: 10px 20px; box-shadow: 5px 5px 0 rgba(0,0,0,0.1); z-index: 5; }
.about-text { flex: 1; }
.about-text h2 { font-size: 3.5rem; margin-bottom: 2rem; line-height: 1.1; }
.about-text p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }

/* Footer */
.footer { background-color: var(--text-primary); color: white; padding: 6rem 0 3rem; }
.footer .handwriting { font-size: 4rem; transform: rotate(-3deg); margin-bottom: 1rem; }
.subscribe-form { display: flex; max-width: 500px; margin: 3rem auto; gap: 10px; }
.subscribe-form input { flex: 1; padding: 1rem 1.5rem; border-radius: 50px; border: none; font-family: var(--font-body); font-size: 1rem; }
.subscribe-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.5); }
.socials { display: flex; justify-content: center; gap: 2rem; margin: 3rem 0; }
.socials a { color: white; font-size: 2rem; transition: color 0.3s, transform 0.3s; }
.socials a:hover { color: var(--accent); transform: translateY(-5px); }
.copyright { color: #888; font-size: 0.9rem; }

@media (max-width: 992px) {
    .about-container { flex-direction: column; }
    .about-images { width: 100%; height: 500px; }
    .hero-content h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .navbar .btn { display: none; }
    .polaroid-gallery { flex-direction: column; align-items: center; }
    .polaroid { transform: none !important; margin-bottom: 2rem; }
    .polaroid:hover { transform: scale(1.02) !important; }
    .subscribe-form { flex-direction: column; }
}
