/* Header styles to match the provided design */

:root {
	--header-height: 88px;
	--accent: #B22222;       /* rouge profond - accent principal */
	--gold:   #C8951A;       /* or chaud - accent secondaire */
	--muted:  #6b6b6b;
	--font-main: 'Georgia', 'Times New Roman', serif;
}

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	margin: 0;
	color: #111;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 60%, #f6f6f6 100%);

}

.site-header {
	background: #fff;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.site-header .container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	/* move logo much closer to left edge */
	padding: 18px 12px 18px 6px;
}

.branding {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-right: 220px;
}

.brand-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #111;
}

.brand-logo {
	flex: 0 0 48px;
}

.brand-text {
	line-height: 1;
}

.brand-name {
	font-weight: 700;
	letter-spacing: 1px;
}

.brand-sub {
	font-size: 12px;
	color: var(--accent);
	font-weight: 600;
}

/* Navbar / navigation */
.navbar {
	margin-right: 40px;
}

.navbar-nav {
	display: flex;
	gap: 50px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navbar-nav .nav-lang {
	display: inline-flex;
	align-items: center;
}

.navbar-nav .nav-lang .lang-btn {
	background: transparent;
	border: none;
	color: #222;
	font-weight: 600;
	cursor: pointer;
	padding: 6px 0;
}

.navbar-nav .nav-link {
	color: #222;
	font-size: 16px;
	padding: 6px 0;
	position: relative;
}

.navbar-nav .nav-link.active {
	font-weight: 700;
}

.navbar-nav .nav-link.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
	transform: translateY(0);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.btn-reserve {
	background: var(--accent);
	color: #fff;
	padding: 10px 18px;
	text-decoration: none;
	border-radius: 2px;
	font-weight: 700;
}

.caret {
	margin-left: 6px;
	font-size: 12px;
}

h2{
    font-weight:800;
    letter-spacing:0.5px;
}

h2::after{
    content:'';
    display:block;
    width:50px;
    height:3px;
    background: var(--accent);
    margin-top:8px;
    border-radius:2px;
}

/* Responsive behavior */
.nav-toggle { display: none; }

/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 991.98px) {

	.site-header .container {
		padding: 12px 16px;
	}

	.branding{
		margin-right:0;
	}

	/* OFFCANVAS */

	.offcanvas{
        --bs-offcanvas-width: 360px;
		border:none;
		border-radius:22px 0 0 22px;
		background:#fff;
		box-shadow:-18px 0 40px rgba(0,0,0,.18);
	}

	.offcanvas-header{
		padding:24px 24px 18px;
		border-bottom:1px solid rgba(0,0,0,.08);
	}

	.offcanvas-title{
		font-size:1.15rem;
		font-weight:700;
		letter-spacing:.5px;
		color:#111;
	}

	.offcanvas-body{
		padding:26px 22px 32px;
	}

	.offcanvas .navbar-nav{
		display:flex;
		flex-direction:column;
		align-items:stretch;
		gap:8px;
	}

	.offcanvas .nav-link{

		display:flex;
		align-items:center;

		padding:14px 18px;

		font-size:1.05rem;
		font-weight:600;

		color:#222;

		border-radius:12px;

		transition:
			background .25s ease,
			color .25s ease,
			transform .25s ease;
	}

	.offcanvas .nav-link:hover{

		background:#f8f8f8;

		color:var(--accent);

		transform:translateX(8px);
	}

	.offcanvas .nav-link.active{

		background:rgba(178,34,34,.08);

		color:var(--accent);
	}

	.offcanvas .btn{
		margin-top:18px;
		border-radius:12px;
		padding:14px;
		font-weight:700;
	}

	/* BOUTON BURGER */

	.navbar-toggler{

		width:48px;
		height:48px;

		padding:0;

		border:none;

		border-radius:12px;

		background:#fff;

		box-shadow:0 8px 20px rgba(0,0,0,.08);

		display:flex;
		align-items:center;
		justify-content:center;

		transition:.3s;
	}

	.navbar-toggler:hover{

		transform:scale(1.05);

		box-shadow:0 12px 28px rgba(0,0,0,.15);
	}

	.navbar-toggler:focus{
		box-shadow:none;
	}

	.navbar-toggler-icon{

		background-image:none;

		width:24px;
		height:2px;

		background:#222;

		position:relative;

		transition:.3s;
	}

	.navbar-toggler-icon::before,
	.navbar-toggler-icon::after{

		content:"";

		position:absolute;

		left:0;

		width:24px;
		height:2px;

		background:#222;

		transition:.3s;
	}

	.navbar-toggler-icon::before{
		top:-7px;
	}

	.navbar-toggler-icon::after{
		top:7px;
	}

}

/* =========================
   OFFCANVAS (GLOBAL)
========================= */

.offcanvas-backdrop{
	background:#000;
}

.offcanvas-backdrop.show{
	opacity:.45;
}

.offcanvas{

	transition:transform .45s cubic-bezier(.22,1,.36,1);

}

.offcanvas .nav-link{

	transition:
		background .25s ease,
		color .25s ease,
		transform .25s ease;

}

.offcanvas .nav-link:hover{

	color:var(--accent);

	transform:translateX(8px);

}

.offcanvas .btn{

	background:var(--accent);

	border:none;

}

.offcanvas .btn:hover{

	background:#941b1b;

}


/* reduce the huge spacing progressively on smaller viewports */

@media (max-width:1200px){

	.branding{
		margin-right:140px;
	}

}

@media (max-width:1000px){

	.branding{
		margin-right:80px;
	}

}

@media (max-width:900px){

	.branding{
		margin-right:0;
	}

}

@media (max-width:520px){

	.brand-text{
		display:block;
		font-size:1.5rem;
	}

	.brand-name{
		font-size:.95rem;
		letter-spacing:.5px;
	}

	.brand-sub{
		font-size:.8rem;
	}

	.brand-logo{
		flex:0 0 32px;
		width:32px;
		height:32px;
	}

	.navbar-toggler{
		width:44px;
		height:44px;
	}

    .navbar{
        margin-right: 10px;
    }

	.restaurant-hero .hero-overlay p{
		font-size:1rem;
	}

	.btn-reserve{
		padding:8px 12px;
	}

}


/* Small utility */
.container { padding-left: 16px; padding-right: 16px; }

/* Hero section */
.hero {
	height: 86vh;
	min-height: 520px;
	position: relative;
	background: #000;
}
.hero-img {
	height: 100%;
	object-fit: cover;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
	max-width: 800px;
	padding: 0 20px;
}

.hero-tagline {
	font-size: 0.875rem;
	letter-spacing: 3px;
	font-weight: 600;
	opacity: 0.95;
}

.hero-title {
	font-size: clamp(2.2rem, 4.6vw, 4rem);
	font-weight: 400;
	font-family: var(--font-main);
	letter-spacing: 2px;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
	opacity: 0.9;
}

.btn-hero {
	background: rgba(178, 34, 34, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.85);
	color: #fff;
	padding: 12px 32px;
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 2px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-hero:hover,
.btn-hero.active {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	transform: translateY(-2px);
}

/* Services section */


.services-section {
	max-height: 0;
	overflow: hidden;

	opacity: 0;
	transform: translateY(30px);

	transition:
        max-height 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1s ease,
        transform 1.5s ease;
		/* max-height 0.9s ease,
		opacity 0.8s ease,
		transform 0.8s ease; */

	background: #fafafa;
}

.services-section.show {
	max-height: 2000px;

	opacity: 1;
	transform: translateY(0);
}


.service-card {
	padding: 2rem 1.5rem;
	background: #fff;
	border-radius: 8px;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card-link {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.service-card-link:hover .service-card {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
	display: inline-block;
}

.service-icon svg,
.service-icon i {
	width: 56px;
	height: 56px;
	color: var(--accent);
	stroke: var(--accent);
}

.service-title {
	font-weight: 700;
	color: #111;
	margin-bottom: 0.5rem;
}

.service-desc {
	color: #6c757d;
	margin: 0;
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Location section tweaks */
.location-section .ratio { border-radius: 8px; overflow: hidden; }

/* Enhanced location section styling */
.location-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-map-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	height: 100%;
	min-height: 400px;
}

.location-map-wrapper iframe {
	width: 100%;
	height: 100%;
	display: block;
}

.location-info-card {
	background: #fff;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.location-title {
	font-weight: 700;
	color: #111;
	font-size: 1.75rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.location-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: var(--accent);
	border-radius: 2px;
}

.location-detail {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.location-icon {
	flex-shrink: 0;
	color: var(--accent);
	margin-top: 2px;
}

.contact-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
    margin-top:24px;
}

.contact-card{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:18px 12px;
    border-radius:16px;

    background: #fff;
    border:1px solid rgba(0,0,0,0.06);

    text-decoration:none;
    color:#111;

    transition: all .25s ease;
    overflow:hidden;
}

/* petit effet de fond dynamique */
.contact-card::before{
    content:'';
    position:absolute;
    inset:0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.06), transparent 70%);
    opacity:0;
    transition:.25s ease;
}

.contact-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    border-color: rgba(178, 34, 34, 0.25);
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.18), #ffffff);
}

.contact-card:hover::before{
    opacity:1;
}

.contact-card i,
.contact-card svg{
    width:28px;
    height:28px;
    margin-bottom:10px;
    color:#111;
    transition:.25s ease;
}

.contact-card span{
    font-size:14px;
    font-weight:600;
    letter-spacing:0.3px;
}


.contact-quick-title{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:4px;
    color:#111;
    position:relative;
}

.contact-quick-title::after{
    content:'';
    display:block;
    width:40px;
    height:3px;
    background: var(--accent);
    border-radius:2px;
    margin-top:6px;
}

.contact-quick-subtitle{
    font-size:13px;
    margin-bottom:0;
}

.contact-link {
	color: #111;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.contact-link:hover {
	color: #666;
}

.btn-outline-dark {
	border-color: #111;
	color: #111;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-outline-dark:hover {
	background: #111;
	border-color: #111;
	color: #fff;
}

@media (max-width: 991.98px) {
	.location-info-card {
		padding: 2rem;
	}
	
	.location-map-wrapper {
		min-height: 350px;
	}
}

/* Footer */

.site-footer{
    background: linear-gradient(135deg, #111, #1c1c1c);
}

.footer-text{
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.6;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-links li{
    margin-bottom: 3px;
}


.footer-links a{
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover{
    color: var(--gold);
}

.contact-item{
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3px;
}


.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1200px) {
	.hero { height: 70vh; }
}

@media (max-width: 768px) {
	.hero { height: 56vh; min-height: 420px; }
	.hero .container { padding-top: 40px; padding-bottom: 40px; }
	
	.hero-tagline { font-size: 0.75rem; }
	.hero-title { font-size: clamp(2.2rem, 4.6vw, 4rem); }
	.hero-subtitle { font-size: 1rem; }
	.restaurant-hero .hero-overlay p { font-size: 1rem; }
	.btn-hero { padding: 10px 24px; font-size: 0.85rem; }
	
	.services-section { padding: 2rem 0; }

	/* Services : réduit sur mobile pour tenir sur 1 ligne */
	.service-card {
		padding: 1rem 0.5rem;
	}

	.service-icon svg,
	.service-icon i {
		width: 32px;
		height: 32px;
	}

	.service-title {
		font-size: 0.75rem;
		margin-bottom: 0.2rem;
	}

	.service-desc {
		font-size: 0.65rem;
	}
}

/* Slightly larger vertical spacing for location and footer */
.location-section { padding-top: 5rem; padding-bottom: 4rem; }
.site-footer { padding-top: 3.5rem; padding-bottom: 3.5rem; }

@media (max-width: 768px) {
	.location-section { padding-top: 3rem; padding-bottom: 2.5rem; }
	.site-footer { padding-top: 2.5rem; padding-bottom: 2rem; }

	.location-map-wrapper {
		min-height: 350px;
	}

	/* Footer : moins d'espace entre colonnes sur mobile */
	.site-footer .row.g-5 {
		--bs-gutter-y: 1.5rem;
	}
}


/* page restaurant */

.restaurant-hero{
    height:100vh;
    background:url('../images/restaurant3.jpeg') center/cover no-repeat;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.restaurant-hero .hero-overlay h1{
	font-size: clamp(2.2rem, 4.6vw, 4rem);
	font-weight: 400;
}

.restaurant-hero .hero-overlay p {
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
	opacity: 0.95;
	max-width: 760px;
	margin: 0 auto;
}

.hero-actions{
    margin-top:20px;
    display:flex;
    gap:12px;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:14px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.food-card{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.food-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.food-card:hover img{
    transform: scale(1.08);
}

/* Centrage du texte comme sur l'image */
.food-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 14px;
    pointer-events: none;
}

.food-name{
	font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: white;
    transform: rotate(-4deg);
    text-shadow:
        1px 1px 0 rgba(0,0,0,0.7),
        2px 2px 4px rgba(0,0,0,0.6);
    line-height: 1;
}


.gallery-grid,
.food-gallery .container{
    gap:18px;
}

.story-image{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.story-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.4s ease;
}

.story-image img:hover{
    transform:scale(1.05);
}

/* titre */
.story-title{
    font-weight:800;
    font-size:1.8rem;
    margin-bottom:12px;
    position:relative;
}

.story-title::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background: var(--accent);
    margin-top:8px;
    border-radius:2px;
}

/* features */
.story-features{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 14px;
    background:#f8f9fa;
    border-radius:12px;

    font-weight:600;
    transition:.25s;
}

.feature:hover{
    background: var(--accent);
    color:white;
    transform:translateX(5px);
}

/* Page traiteur */

/* .event-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.event-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
} */

/* ===================== TRAITEUR PAGE - CSS ===================== */

/* HERO */
.traiteur-hero {
    position: relative;
    min-height: 85vh;
    background: url("../images/traiteur-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.traiteur-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* EVENT CARD */
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.event-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* .event-images{
    display:flex;
    gap:4px;
    height:180px;
    padding:4px;
    background:#fff;
}

.event-images img{
    flex:1;
    object-fit:cover;
    border-radius:8px;
} */

.event-images{
    display: flex;
    gap: 4px;
    height: 180px;
    padding: 4px;
    background: #fff;
}

.event-images img{
    flex: 1;
    width: 100%;
    height: 100%;
    object-fit: cover; /* joli rendu */
}

/* SERVICE CARD */
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* GALLERY SECTION */
.gallery-item{
    width: 100%;
    height: 180px; /* même hauteur pour toutes */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* rend toutes les images uniformes */
    display: block;
}

.traiteur-cta .container {
    position: relative;
    z-index: 2;
}

/* TITLES */
h2 {
    letter-spacing: 0.5px;
}

/* BUTTONS */
.btn-warning {
    background: #d4a017;
    border: none;
}

.btn-warning:hover {
    background: #b8860b;
}

/* RESPONSIVE */

/* Tablette paysage */
@media (max-width: 768px) {
    .traiteur-hero {
        min-height: 70vh;
        text-align: center;
    }

    .event-card img,
    .service-card img {
        height: 160px;
    }

    /* Restaurant : gallery 2 colonnes */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .food-card {
        height: 220px;
    }

    .food-name {
        font-size: 2.2rem;
    }

    /* Restaurant : hero */
    .restaurant-hero {
        height: 60vh;
        min-height: 380px;
    }

    /* Restaurant : story image */
    .story-image img {
        height: 280px;
    }

    /* Index : contact grid 3 colonnes sur une ligne */
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .contact-card {
        padding: 12px 6px;
    }

    .contact-card span {
        font-size: 12px;
    }

    .contact-card i,
    .contact-card svg {
        width: 22px;
        height: 22px;
        margin-bottom: 6px;
    }
}

/* Tablette portrait */
@media (max-width: 576px) {
    /* Restaurant : gallery 3 colonnes compact */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .food-card {
        height: 130px;
        border-radius: 10px;
    }

    .food-name {
        font-size: 1.3rem;
    }

    .story-image img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    /* Restaurant : gallery 3 colonnes même sur mobile */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .food-card {
        height: 120px;
        border-radius: 10px;
    }

    .food-name {
        font-size: 1.1rem;
    }

    /* Index : contact grid 3 colonnes même sur mobile */
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    /* Chambres : prix banner en colonne */
    .rooms-price-banner {
        flex-direction: column;
        gap: 0.3rem;
        border-radius: 16px;
    }
}

/* ===================== CHAMBRES PAGE ===================== */

.rooms-hero {
	min-height: 70vh;
	position: relative;
	background: url('../images/chambres-hero.png') center 70%/cover no-repeat;
}

.rooms-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%);
	display: flex;
	align-items: center;
}

.rooms-hero-kicker {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.rooms-hero-title {
	font-size: clamp(2.2rem, 4.6vw, 4rem);
	font-family: var(--font-main);
	margin-bottom: 0.9rem;
}

.rooms-hero-subtitle {
	max-width: 760px;
	margin: 0 auto;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	opacity: 0.95;
}

.rooms-intro {
	background: #f8f9fa;
}

.rooms-price-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	flex-wrap: wrap;
	padding: 1rem 1.2rem;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: #fff;
	max-width: 430px;
	margin: 0 auto;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.rooms-price-label {
	font-size: 0.9rem;
	color: #555;
	font-weight: 600;
}

.rooms-price-value {
	font-size: 1.15rem;
	color: var(--accent);
	font-weight: 800;
}

.rooms-intro-text {
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #4f4f4f;
	font-size: 1.05rem;
}

.rooms-list {
	background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.room-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	height: 100%;
}

.room-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.room-card-image {
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
	background: #e9ecef;
}

.room-card-body {
	padding: 1.1rem 1.1rem 1.25rem;
}

.room-card-body h3 {
	font-size: 1.2rem;
	margin-bottom: 0.55rem;
	font-weight: 700;
}

.room-card-body p {
	color: #646464;
	margin-bottom: 0.95rem;
}

.room-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.room-card-footer span {
	font-weight: 800;
	font-size: 1rem;
	color: var(--accent);
}

@media (max-width: 768px) {
	.rooms-hero {
		min-height: 52vh;
	}

	.rooms-hero-subtitle {
		font-size: 1rem;
	}

	.room-card-image {
		height: 210px;
	}

	.rooms-list .container {
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (max-width: 480px) {
	.rooms-list .container {
		padding-left: 25px;
		padding-right: 25px;
	}
}