@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 2rem;
}
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;
}
.page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 3rem;
    padding-left: 10px;
}
.tarif-card-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px;
}
.tarif-card {
    background: linear-gradient(135deg, #6B4506 0%, #E9D0A7 50%, #6B4506 100%);
    border-radius: 15px;
    padding: 20px 0px;
    width: 306px;
    height: 110px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}
.tarif-card:hover {
    transform: scale(1.02);
}
.tarif-date {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    padding: 0 30px 8px 30px;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.7);
}
.tarif-prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    flex: 1;
    margin-top: -5px;
}
.price-item {
    display: flex;
    align-items: center;
}
.price-item:first-child {
    display: flex;
}
.price-item:not(:first-child) {
    display: none;
}
.price-label {
    display: none;
}
.price-value {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
    line-height: 0.9;
}
.price-arrow {
    color: #ffffff;
    font-size: 80px;
    font-weight: bold;
    line-height: 0.9;
}
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;
}
