@font-face {
    font-family: "Outfit";
    src: url("./fonts/Outfit.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Outfit thin";
    src: url("./fonts/Outfit-Thin.ttf") format("truetype");
     font-weight: 100;
    font-style: normal;
}

body {
    margin:0;
    font-family:"Outfit";
}

body p{
    font-family:"Outfit thin";
}

.hero {
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background: #86b89b;
    color:rgb(0, 0, 0);
}

.hero-logo {
    width:600px;
    margin-bottom:30px;
}

.hero h1 {
    margin: 2rem 0;
    font-size:4rem;
}

.hero p{
    margin: 2rem 0;
    font-size:2rem;
}
.hero-buttons {
    display: flex;
    justify-content: center; 
    gap: 20px;               
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 15px 30px;          
    font-size: 1.5rem;             
    border: none;
    border-radius: 10px;
    background-color: #994e66;   
    color: #ffffff;              
    cursor: pointer;
    transition: 0.3s;
    min-width: 150px;            
}

.hero-buttons .btn:hover {
    background-color: #9b6475;   
    color: #fff;
}

.hero-sub {
    opacity:0.8;
}

.section {
    padding:100px 20px;
}
.section p{
    font-size: 1.5em;
}

.section-light {
    background:#f8f9fa;
}

.section-dark {
    background:#af6f25;
    color:white;
}
.section-dark p{
    font-size: 1.5em;
}

.section-booking {
    background:#49a0b0;
    color:white;
}


.section-accent {
    padding: 80px 20px 50px 20px;
    background: #ffffff;
}


.section-accent .row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}


.section-accent .col-md-4 {
    flex: 1;
    min-width: 280px;
}


.section-accent .card {
    border: none;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    background: rgb(255, 255, 255);

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.section-accent h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.section-accent p {
    color: #ffffff;
    line-height: 1.6;
}


.modern-card {
    background:white;
    padding:20px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
}

.modern-card:hover {
    transform:translateY(-10px);
}

.image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.image-item {
    text-align: center;
    max-width: 1000px;  
    width: 100%;
}

.image-item .label {
    font-size: 2.2em;
    margin-bottom: 60px;
}

.image-item img {
    width: 100%;
    max-width: 1000px; 
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;   
}


.hotel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.hotel-card:nth-child(1),
.hotel-card:nth-child(2),
.hotel-card:nth-child(3) {
    grid-column: span 2;
}

.hotel-card:nth-child(4) {
    grid-column: 2 / span 2;
    margin-top: 40px;
}

.hotel-card:nth-child(5) {
    grid-column: 4 / span 2;
    margin-top: 40px;
}

.hotel-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

#hotelSection h2{
   font-size: 2.4em;
}
.section-light h2{
   font-size: 2.4em;
}
.section-light p{
   font-size: 1.8em;
}

.hotel-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.overlay h3 {
    color: white;
    transform: translateY(20px);
    transition: 0.4s;
}

.hotel-card:hover img {
    transform: scale(1.1);
}

.hotel-card:hover .overlay {
    opacity: 1;
}

.hotel-card:hover .overlay h3 {
    transform: translateY(0);
}

.hotel-card:hover {
    transform: translateY(-8px);
}


.booking-glass {
    background:#49a0b0;
    padding:30px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    width: clamp(400px, 50vw, 800px);
    margin: 0 auto;
}

.booking-glass input,
.booking-glass select,
.booking-glass textarea {
    padding:10px;
    border:none;
    border-radius:10px;
    height: 50px;
}

.btn-light {
    font-size: 1.8em;
}

.footer {
    font-size: 1.6em;
    background:#af6f25;
    color:rgb(255, 255, 255);
    text-align:center;
    padding:30px;
}

.footer a {
    color: rgb(255, 255, 255);
}

