@import url('https://fonts.googleapis.com/css2?family=Ramaraja&family=Krub:wght@400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Krub', sans-serif;
}
html {
    background-color: #101B2B;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #101B2B;
}
header {
    position: relative;
}
header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}
header nav .back-btn,
header nav .menu-toggle {
    pointer-events: auto;
}
main {
    flex: 1;
    padding: 3rem 0;
    padding-left: 32px;
}
.page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 3rem;
}
.section-subtitle {
    color: #ffffff;
    font-size: 28px;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.hotels-section,
.airbnb-section {
    margin-bottom: 2rem;
}
.hotel-card,
.airbnb-card {
    position: relative;
    margin-bottom: 2rem;
}
.hotel-card {
    position: relative;
}
.hotel-image,
.airbnb-map {
    width: 326px;
    height: 185px;
    border-radius: 30px;
    display: block;
    margin-bottom: 0;
    object-fit: cover;
}
.reserve-btn {
    position: absolute;
    bottom: 120px;
    left: 62px;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 10px 35px;
    font-size: 14px;
    font-weight: bold;
    color: #101B2B;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}
.reserve-btn:hover {
    transform: scale(1.05);
}
.hotel-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.hotel-price,
.airbnb-price {
    color: #ffffff;
    font-family: 'Krub', sans-serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    line-height: 157%;
    letter-spacing: -2%;
}
.price-unit {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
}
header nav .back-btn,
header nav .menu-toggle {
    pointer-events: auto;
}
.back-btn {
    background-color: #E9D0A7;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.back-btn:hover {
    transform: scale(1.05);
}
.back-btn img {
    width: 28px;
    height: 28px;
}
.menu-toggle {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.menu-toggle:hover {
    transform: scale(1.05);
}
.menu-toggle img {
    width: 40px;
    height: 40px;
}
.header-background {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.logo-overlay a {
    text-decoration: none;
    font-family: 'Ramaraja', serif;
    font-size: 2rem;
    background: linear-gradient(to right, #E9D0A7, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
    text-align: center;
}
footer {
    background-color: #101B2B;
    padding-top: 2rem;
}
.social-media {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0rem;
}
.social-media a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-media a:hover {
    transform: scale(1.1);
}
.social-media img {
    width: 29px;
    height: 29px;
}
.footer-nav {
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    color: #E9D0A7;
}
.footer-nav-line1,
.footer-nav-line2 {
    margin: 0.5rem 0;
}
.footer-nav a {
    color: #E9D0A7;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: #E9D0A7;
}
.footer-nav span {
    margin:  0.10rem;
    color: #ffffff;
}
.footer-hero {
    position: relative;
    width: 100%;
    height: 275px;
}
.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #101B2B 0%, #101B2B 10%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.footer-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
