*{box-sizing:border-box}
body{margin:0;background:#faf7f2;color:#241f16;font-family:system-ui,-apple-system,'Segoe UI',Arial,sans-serif}
img{max-width:100%;display:block}
h1,h2,h3{font-family:Georgia,'Times New Roman',serif;font-weight:400;margin:0}

/* hero */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:2rem;
    background:linear-gradient(to bottom, rgba(10,16,28,0.35), rgba(10,16,28,0.8)), url('https://i1.wp.com/viajetip.com/wp-content/uploads/2015/09/Dubai-City-Most-Popular-Attractions-Visit-1.jpg?ssl=1');
    background-position:center;
    background-size:cover;
}
.hero-content h1{color:#fff;font-size:clamp(2.1rem,6vw,3.6rem);text-shadow:0 4px 22px rgba(0,0,0,0.55);letter-spacing:0.02em}

/* intro banner */
.intro{background:#f0e6d6;padding:3.5rem 1.5rem;text-align:center}
.intro h2{font-size:clamp(1.4rem,3vw,2rem);color:#16324f}

/* burj khalifa feature */
.feature{max-width:820px;margin:0 auto;padding:5.5rem 1.5rem;text-align:center}
.feature-title{font-size:clamp(1.7rem,4vw,2.4rem);color:#16324f;margin-bottom:2rem}
.feature-photo{width:100%;max-width:520px;aspect-ratio:3/4;object-fit:cover;border-radius:16px;box-shadow:0 24px 50px rgba(22,50,79,0.22);margin:0 auto 2rem}
.feature-desc{max-width:700px;margin:0 auto;text-align:left;font-size:1.03rem;line-height:1.85;color:#3a352c}

/* attraction cards */
.cards{max-width:1100px;margin:0 auto;padding:1rem 1.5rem 5.5rem;display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
@media (max-width:900px){ .cards{grid-template-columns:1fr;max-width:600px} }
.card{background:#fff;border:1px solid rgba(22,50,79,0.08);border-radius:16px;overflow:hidden;box-shadow:0 12px 28px rgba(22,50,79,0.08);transition:box-shadow .25s ease,transform .25s ease}
.card:hover{box-shadow:0 20px 42px rgba(22,50,79,0.14);transform:translateY(-3px)}
.card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.card-body{padding:1.5rem}
.card-body h3{font-size:1.15rem;color:#16324f;margin-bottom:0.75rem;line-height:1.3}
.card-body p{font-size:0.92rem;line-height:1.75;color:#3a352c;margin:0}

/* footer */
.site-footer{background:#101d33;padding:4rem 1.5rem 3.5rem;text-align:center}
.footer-lead{color:#fff;font-family:Georgia,serif;font-size:clamp(1.2rem,3vw,1.5rem);max-width:640px;margin:0 auto 1rem;line-height:1.5}
.footer-sub{color:rgba(255,255,255,0.65);font-size:0.95rem;margin:0 0 2rem}
.cta-button{
    display:inline-block;
    text-decoration:none;
    padding:0.85rem 2.4rem;
    border-radius:999px;
    background:linear-gradient(135deg,#e9d9b8,#c9a24b);
    color:#101d33;
    font-weight:600;
    font-size:0.95rem;
    letter-spacing:0.01em;
    box-shadow:0 14px 30px rgba(201,162,75,0.3);
    transition:transform .25s ease,box-shadow .25s ease;
}
.cta-button:hover{transform:translateY(-2px);box-shadow:0 20px 40px rgba(201,162,75,0.4)}
.creator-name{margin:2.5rem 0 0;color:rgba(255,255,255,0.5);font-size:0.85rem;letter-spacing:0.05em}
