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

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #c4403f;
    --text-gray: #666;
    --light-gray: #f5f5f5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--primary-color);
}

.book-btn {
    font-family: 'Figtree', sans-serif;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.book-btn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary-color);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-cta {
    font-family: 'Figtree', sans-serif;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.hero-cta:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    transform: translateX(-50%) scale(1.1);
}

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

/* Sections Common Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #2c3e50;
}

/* Suites Section */
.suites-section {
    background-color: #f8f9fa;
    padding: 0;
    margin-bottom: 60px;
}

.suites-showcase {
    max-width: 100%;
}

.suites-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background-color: var(--secondary-color);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.suite-tab {
    background: none;
    border: none;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c3e50;
    padding: 15px 25px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.suite-tab:hover,
.suite-tab.active {
    color: #1a252f;
}

.suite-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c3e50;
}

.suites-display {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.suite-showcase-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.suite-showcase-item.active {
    opacity: 1;
}

.suite-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.suite-showcase-item:hover img {
    transform: scale(1.02);
}

.suite-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.suite-showcase-item.active .suite-overlay {
    opacity: 1;
    transform: translateY(0);
}

.suite-cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.suite-cta-btn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--secondary-color);
}

.suites-cta {
    display: none;
}

/* Welcome Section */
.welcome-section {
    background-color: #c4403f;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(0% 0%, 10% 20%, 20% 15%, 30% 30%, 40% 25%, 50% 40%, 60% 35%, 70% 50%, 80% 45%, 90% 60%, 100% 55%, 100% 0%);
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    clip-path: polygon(0% 100%, 10% 80%, 20% 85%, 30% 70%, 40% 75%, 50% 60%, 60% 65%, 70% 50%, 80% 55%, 90% 40%, 100% 45%, 100% 100%);
}

.welcome-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 40px;
}

.welcome-content p {
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 600;
    /* text-transform: uppercase; */
    line-height: 1.3;
    color: var(--secondary-color);
    /* font-style: italic; */
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Philosophy Section */
.philosophy-section {
    background: var(--secondary-color);
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(196, 64, 63, 0.02) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: left;
}

.philosophy-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.philosophy-slider {
    position: relative;
}

.philosophy-slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.philosophy-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.philosophy-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.philosophy-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.philosophy-prev,
.philosophy-next {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-prev:hover,
.philosophy-next:hover {
    background: #2c3e50;
    color: white;
    transform: scale(1.1);
}

.philosophy-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #2c3e50;
}

.dot:hover {
    background: #2c3e50;
    transform: scale(1.2);
}

/* Experiences Section */
.experiences-section {
    background: linear-gradient(135deg, #f6f7f8 0%, #e9ecef 100%);
}

.experiences-intro {
    text-align: center;
    margin-bottom: 60px;
}

.experiences-description {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.experiences-magazine {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 20px;
    height: 700px;
}

.experience-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.experience-card.large {
    grid-row: 1 / 3;
}

.experience-card.medium {
    grid-column: 2 / 4;
}

.experience-card.small {
    /* Default grid positioning */
}

.experience-card.small:last-child {
    grid-column: 2 / 4;
}

.experience-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--secondary-color);
    padding: 40px 30px 30px;
    transform: translateY(60%);
    transition: transform 0.4s ease;
}

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

.experience-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.experience-overlay p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.experience-card.large .experience-overlay h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.experience-card.large .experience-overlay p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Gallery Bar Section */
.gallery-bar-section {
    background-color: var(--secondary-color);
}

.gallery-bar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gallery-bar-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.gallery-bar-images {
    position: relative;
}

.gallery-bar-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-bar-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-prev,
.gallery-next {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #2c3e50;
    color: white;
    transform: scale(1.1);
}

.gallery-bar-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: #2c3e50;
}

.gallery-dot:hover {
    background: #2c3e50;
    transform: scale(1.2);
}

/* Location Section */
.location-section {
    background: linear-gradient(45deg, #f1f3f4 0%, #e8eaed 50%, #f1f3f4 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    min-height: 500px;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c3e50;
}

.location-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.location-map {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(120%) brightness(110%);
    transition: filter 0.3s ease;
    border-radius: 12px;
}

.location-map iframe:hover {
    filter: grayscale(60%) contrast(110%) brightness(105%);
}

/* Footer */
.footer {
    background-color: #c4403f;
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column ul {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--secondary-color);
    padding: 10px 15px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #1a252f;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.pre-footer {
    background-color: var(--secondary-color);
    padding: 8px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-bottom: 1px solid rgba(196, 64, 63, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-section::before {
        clip-path: polygon(0% 0%, 20% 10%, 40% 8%, 60% 15%, 80% 12%, 100% 20%, 100% 0%);
        height: 60px;
    }
    
    .welcome-section::after {
        clip-path: polygon(0% 100%, 20% 90%, 40% 92%, 60% 85%, 80% 88%, 100% 80%, 100% 100%);
        height: 60px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 10px;
        border-radius: 8px;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
        border-left: none;
        font-size: 13px;
    }
    
    .dropdown-menu a:hover {
        transform: none;
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-actions {
        gap: 15px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .philosophy-content,
    .gallery-bar-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map {
        min-height: 350px;
    }
    
    .philosophy-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .philosophy-slider-container {
        height: 350px;
    }
    
    .welcome-section {
        padding: 80px 0;
    }
    
    .experiences-magazine {
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .experience-card {
        height: 300px;
    }
    
    .experience-card.large,
    .experience-card.medium,
    .experience-card.small {
        grid-column: unset;
        grid-row: unset;
    }
    
    .experience-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
        padding: 30px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .logo-container {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-logo {
        height: 25px;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-container {
        gap: 15px;
    }
    
    .footer-logo {
        height: 20px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-content {
        padding: 0 20px;
    }
    
    .suites-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .experience-card {
        height: 250px;
    }
    
    .experiences-magazine {
        gap: 10px;
    }
    
    .experience-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .experience-overlay p {
        font-size: 0.85rem;
    }
    
    .experience-card.large .experience-overlay h3 {
        font-size: 1.4rem;
    }
    
    .experience-card.large .experience-overlay p {
        font-size: 0.9rem;
    }
}