/* ===== LUXURY 5-STAR HOTEL CSS ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
*, *::before, *::after {
    max-width: 100%;
}

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --dark-gold: #9A7B0A;
    --platinum: #E5E4E2;
    --charcoal: #1C1C1C;
    --deep-navy: #0F1419;
    --ivory: #FFFFF0;
    --crystal: #FFFFFF;
    --shadow-light: rgba(212, 175, 55, 0.1);
    --shadow-dark: rgba(15, 20, 25, 0.3);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #9A7B0A 100%);
    --gradient-luxury: linear-gradient(135deg, #0F1419 0%, #1C1C1C 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--crystal);
    overflow-x: hidden;
    font-size: 1rem;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--crystal);
}

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInScale 2s ease forwards;
}

.preloader-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.preloader-line {
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem auto;
    opacity: 0;
    animation: scaleX 1s ease 1s forwards;
}

.preloader-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 70px;
    height: auto;
    /* filter: brightness(0) invert(1); */
}

.logo-text h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: var(--platinum);
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.8rem;
    margin: 0;
    align-items: center;
}

.nav-link {
    color: var(--platinum);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-cta {
    margin-left: 2rem;
}

.btn-reservation {
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-reservation:hover {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    margin: 4px 0;
    transition: all 0.4s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide[data-bg="images/hotel/outside.jpg"] {
    background-image: url('images/hotel/outside.jpg');
}

.hero-slide[data-bg="images/hotel/6R0A0641.jpg"] {
    background-image: url('images/hotel/6R0A0641.jpg');
}

.hero-slide[data-bg="images/hotel/6R0A0668.jpg"] {
    background-image: url('images/hotel/6R0A0668.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 20, 25, 0.7) 0%, rgba(15, 20, 25, 0.4) 50%, rgba(212, 175, 55, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: var(--crystal);
    max-width: 900px;
    padding: 250px 2rem 0;
    margin-left: 9%;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.hero-badge span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title-main {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    line-height: 1.9;
    max-width: 650px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-light);
}

.btn-primary.cta-highlighted {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    100% {
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--crystal);
    padding: 15px 35px;
    border: 2px solid var(--crystal);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: var(--crystal);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 7%;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--crystal);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: var(--primary-gold);
    color: var(--charcoal);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ===== EXPERIENCE BAR ===== */
.experience-bar {
    background: var(--gradient-luxury);
    padding: 4rem 0;
    border-top: 1px solid var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
    border-color: var(--primary-gold);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-icon i {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.experience-content h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.experience-content p {
    color: var(--platinum);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.section-title.white {
    color: var(--crystal)!important;
}

.section-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item.featured {
    grid-column: span 2;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(15, 20, 25, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--crystal);
    transform: translateY(30px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gallery-btn {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

/* ===== HOMAGE SECTION - ENHANCED ===== */
.homage-section {
    background: var(--gradient-luxury);
    color: var(--crystal);
    position: relative;
    overflow: hidden;
}

.memorial-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="0.8" fill="%23D4AF37" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="4s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1.2" fill="%23D4AF37" opacity="0.2"><animate attributeName="opacity" values="0.2;0.7;0.2" dur="5s" repeatCount="indefinite"/></circle></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

/* Memorial Hero */
.memorial-hero {
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.memorial-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.memorial-badge i {
    color: #ff6b6b;
    font-size: 1rem;
    animation: heartbeat 2s infinite;
}

.memorial-title {
    margin-bottom: 3rem;
}

.memorial-name {
    display: block;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.memorial-dates {
    display: block;
    font-size: 1.8rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.memorial-subtitle {
    display: block;
    font-size: 1.4rem;
    opacity: 0.8;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2rem;
}

.memorial-quote {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 4rem 3.5rem;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    font-size: 5rem;
    color: var(--primary-gold);
    opacity: 0.6;
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.memorial-quote p {
    font-size: 1.6rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
    padding-top: 2rem;
}

.memorial-quote cite {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: normal;
    display: block;
    text-align: right;
    font-weight: 500;
    color: var(--primary-gold);
}

/* New Memorial Biography Section */
.memorial-biography {
    background: rgba(212, 175, 55, 0.05);
    padding: 4rem 0;
    margin-top: 3rem;
}

.memorial-biography h3 {
    color: var(--primary-gold);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.biography-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--platinum);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.digital-museum h4 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.museum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.museum-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;

}

.museum-item:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.museum-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.museum-item span {
    color: var(--platinum);
    font-weight: 500;
    text-align: center;
}

/* Original Memorial Biography */
.memorial-biography-old {
    padding: 6rem 0;
    background: rgba(212, 175, 55, 0.05);
}

.biography-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
    padding-top: 2rem;
}

.biography-image {
    position: relative;
    text-align: center;
}

.image-frame {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-frame img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    filter: sepia(20%) saturate(120%);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 25px;
    background: var(--gradient-gold);
    z-index: -1;
    opacity: 0.3;
    animation: glow 3s ease-in-out infinite alternate;
}

.memorial-flowers {
    position: absolute;
    top: -2rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.memorial-flowers i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.memorial-flowers i:nth-child(2) {
    animation-delay: 1s;
}

.memorial-flowers i:nth-child(3) {
    animation-delay: 2s;
}

.biography-content h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-gold);
    line-height: 1.2;
}

.biography-text .lead {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.biography-details {
    display: grid;
    gap: 2rem;
}

.detail-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.detail-content h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.detail-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Memorial Legacy */
.memorial-legacy {
    padding: 6rem 0;
    text-align: center;
}

.memorial-legacy h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-gold);
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.legacy-item {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.legacy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.legacy-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.legacy-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legacy-message {
    max-width: 900px;
    margin: 0 auto;
}

.message-content {
    background: rgba(212, 175, 55, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.message-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
}

.signature {
    text-align: center;
    margin-top: 2rem;
}

.signature-text {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem auto;
}

.signature-family {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
}

/* Memorial Garden */
.memorial-garden {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.garden-content {
    text-align: center;
}

.memorial-garden h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.memorial-garden p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.garden-elements {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.garden-element {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.garden-element i {
    font-size: 2rem;
    color: var(--primary-gold);
    animation: float 3s ease-in-out infinite;
}

.garden-element:nth-child(2) i {
    animation-delay: 1s;
}

.garden-element:nth-child(3) i {
    animation-delay: 2s;
}

/* ===== RESTAURANT SECTION ===== */
.restaurant-section {
    padding: 6rem 0;
    background: var(--deep-navy);
}

.restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.restaurant-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--platinum);
    margin-bottom: 2.5rem;
}

.restaurant-hours {
    margin-bottom: 2.5rem;
}

.hour-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.hour-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    min-width: 20px;
}

.hour-item span {
    color: var(--platinum);
    font-size: 1rem;
}

.menu-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.menu-download-btn:hover {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.restaurant-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== OTHER SECTIONS STYLES ===== */
.about-section {
    padding: 6rem 0;
    background: var(--crystal);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.about-icon i {
    font-size: 2rem;
    color: var(--charcoal);
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.about-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Continuing with remaining styles... */
.chambres-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chambres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.suite-card {
    background: var(--crystal);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.suite-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.suite-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.suite-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--charcoal);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suite-content {
    padding: 2.5rem 2rem;
}

.suite-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.suite-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: .8rem;
}

.suite-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.suite-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.suite-features i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.suite-btn {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.suite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--gradient-luxury);
    color: var(--crystal);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--charcoal);
}

.contact-details h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(212, 175, 55, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--crystal);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    background: var(--gradient-gold);
    color: var(--charcoal);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-self: start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

/* Footer */
.footer {
    background: var(--deep-navy);
    color: var(--crystal);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 150px;
    height: auto;
    /* filter: brightness(0) invert(1); */
}

.footer-logo-text h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo-text span {
    color: var(--platinum);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--platinum);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--platinum);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.85;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    display: block;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    opacity: 1;
    padding-left: 10px;
}

.footer-section ul li a:hover::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crystal);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

/* New Footer Styles */
.footer-main {
    padding: 4rem 0 2rem;
}

.footer-top {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo-section .footer-tagline {
    color: var(--platinum);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.footer-contact-section {
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-text strong {
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text span,
.contact-text a {
    color: var(--platinum);
    font-size: .85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-gold);
}

.footer-social {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem 0;
    background: var(--deep-navy);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.memorial-text {
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleX {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0% {
        opacity: 0.3;
        filter: blur(5px);
    }
    100% {
        opacity: 0.6;
        filter: blur(10px);
    }
}

@keyframes heartbeat {
    0%, 50%, 100% {
        transform: scale(1);
    }
    25%, 75% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-content {
        margin-left: 3%;
        max-width: 800px;
        padding-top: 100px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        margin-left: 2%;
        max-width: 700px;
        padding: 100px 1.5rem 0;
    }

    .hero-title-main {
        font-size: clamp(3rem, 7vw, 5.5rem);
    }

    .hero-title-sub {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    }

    .chambres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body, html {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    section, div, .container, .gallery-grid, .about-grid {
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-container {
        padding: 1rem 20px;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo-text {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        padding: 3rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        letter-spacing: 1px;
    }

    .nav-cta {
        display: none;
    }

    .btn-reservation {
        display: inline-block;
        margin: 0 auto;
        padding: 10px 18px;
        font-size: 0.8rem;
        border-radius: 25px;
    }

    .hero {
        justify-content: center;
        min-height: 600px;
    }

    .hero-content {
        text-align: center;
        margin-left: 0;
        padding: 120px 1.5rem 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 90%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .hero-scroll {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-primary,
    .btn-secondary {
        width: 200px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Hide some gallery items on mobile to reduce page length */
    .gallery-item:nth-child(n+7) {
        display: none;
    }

    .gallery-item {
        height: 250px;
        border-radius: 15px;
    }

    .restaurant-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restaurant-image {
        height: 250px;
        order: -1;
    }

    .biography-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .biography-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .memorial-biography {
        padding: 2rem 0;
    }

    .memorial-biography h3 {
        font-size: 1.8rem;
    }

    .biography-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .museum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .museum-item {
        padding: 1.5rem;
    }

    .museum-item i {
        font-size: 2rem;
    }

    .digital-museum h4 {
        font-size: 1.5rem;
    }

    .memorial-quote {
        margin: 2rem 0;
        text-align: center;
    }

    .memorial-quote p {
        font-size: 1.1rem;
    }

    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-navigation {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .memorial-hero {
        padding: 4rem 0 2rem;
        min-height: auto;
    }

    .memorial-content {
        padding: 0 1rem;
    }

    .memorial-title {
        text-align: center;
    }

    .memorial-name {
        font-size: 2.5rem;
    }

    .memorial-dates {
        font-size: 1.2rem;
    }

    .memorial-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .memorial-quote {
        padding: 2.5rem 2rem;
        margin: 2rem auto 0;
    }

    .memorial-quote p {
        font-size: 1.3rem;
    }

    .biography-content h3 {
        font-size: 2.2rem;
    }

    .biography-text .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 100px 1rem 0;
        margin-left: 0;
    }

    .hero-title-main {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-title-sub {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-scroll {
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
    }

    .memorial-hero {
        padding: 4rem 0 3rem;
        min-height: 40vh;
    }

    .memorial-name {
        font-size: 2.8rem;
    }

    .memorial-dates {
        font-size: 1.2rem;
    }

    .memorial-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .memorial-quote {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto 0;
    }

    .memorial-quote p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .quote-mark {
        font-size: 3.5rem;
        top: 1rem;
        left: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .image-frame img {
        width: 280px;
        height: 350px;
    }

    .garden-elements {
        gap: 1.5rem;
    }

    .garden-element {
        width: 60px;
        height: 60px;
    }

    .chambres-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .suite-card {
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .biography-content h3 {
        font-size: 1.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-item {
        text-align: center;
        padding: 1.5rem;
    }

    .about-icon {
        margin-bottom: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        text-align: center;
        padding: 1rem;
    }

    .footer-social {
        margin-top: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .biography-text .lead {
        font-size: 1.1rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-content {
        padding: 100px 1rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title-sub {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .gallery-item {
        height: 200px;
    }

    /* Show even fewer gallery items on very small screens */
    .gallery-item:nth-child(n+5) {
        display: none;
    }

    .suite-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .memorial-title {
        font-size: 2rem;
    }

    .museum-grid {
        grid-template-columns: 1fr;
    }
}