* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: white;
}

main {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("taj-mahal.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.dark {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.08)),
        linear-gradient(0deg, rgba(0,0,0,.5), transparent 45%);
}

/* NAVBAR */

header {
    position: absolute;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 90px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 5px;
    text-decoration: none;
}

.logo span {
    color: #d8c4a0;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

nav a:hover {
    color: #d8c4a0;
}

.visit-btn {
    color: white;
    text-decoration: none;
    padding: 11px 25px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 30px;
    transition: .3s;
}

.visit-btn:hover {
    background: white;
    color: #111;
}

/* HERO */

.hero-content {
    position: absolute;
    z-index: 3;
    left: 9%;
    top: 50%;
    transform: translateY(-45%);
    max-width: 600px;
}

.small-title {
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 20px;
    color: #ddd;
}

h1 {
    font-size: clamp(70px, 10vw, 145px);
    line-height: .78;
    letter-spacing: 8px;
    font-weight: 800;
}

h1 span {
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.description {
    max-width: 400px;
    margin-top: 30px;
    line-height: 1.7;
    color: #eee;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.buttons a {
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 13px;
}

.primary {
    background: white;
    color: #111;
}

.secondary {
    color: white;
    border: 1px solid rgba(255,255,255,.5);
}

/* SIDE NUMBER */

.side-text {
    position: absolute;
    z-index: 5;
    right: 5%;
    top: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
}

.side-text div {
    width: 1px;
    height: 80px;
    background: white;
    opacity: .6;
}

/* BOTTOM INFO */

.bottom-info {
    position: absolute;
    z-index: 5;
    bottom: 35px;
    left: 9%;
    display: flex;
    gap: 55px;
}

.bottom-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bottom-info strong {
    font-size: 17px;
    letter-spacing: 2px;
}

.bottom-info small {
    color: #ccc;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTIONS */

.section {
    min-height: 70vh;
    padding: 120px 12%;
    background: #f3f0ea;
    color: #222;
}

.section > p:first-child {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section h2 {
    font-size: clamp(45px, 7vw, 90px);
    line-height: .95;
    margin-bottom: 35px;
}

.section > p:last-of-type {
    max-width: 600px;
    line-height: 1.8;
    color: #666;
}

.dark-section {
    background: #171717;
    color: white;
}

.dark-section > p:last-of-type {
    color: #aaa;
}

.visit-section {
    text-align: center;
}

.visit-section button {
    border: 0;
    padding: 15px 30px;
    border-radius: 30px;
    background: #222;
    color: white;
    cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 800px) {

    header {
        padding: 0 5%;
    }

    nav {
        display: none;
    }

    .hero-content {
        left: 7%;
        right: 7%;
    }

    h1 {
        font-size: 75px;
    }

    .description {
        font-size: 14px;
    }

    .bottom-info {
        left: 7%;
        gap: 20px;
    }

    .bottom-info div:nth-child(2),
    .bottom-info div:nth-child(3) {
        display: none;
    }

    .side-text {
        display: none;
    }
}