* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    padding-top: 20vh;
    padding-bottom: 200px;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.hotels-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
}

.hotel-card {
    background: transparent;
    border-radius: 0;
    padding: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: none;
    backdrop-filter: none;
    flex: 0 1 300px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hotel-card:nth-child(1) {
    animation-delay: 0.2s;
}

.hotel-card:nth-child(2) {
    animation-delay: 0.4s;
}

.hotel-card:nth-child(3) {
    animation-delay: 0.6s;
}

.hotel-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: none;
    background: transparent;
}

.logo-container {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    overflow: hidden;
}

.hotel-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.hotel-card:hover .hotel-logo {
    transform: scale(1.1);
    filter: none;
}

.hotel-name {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hotels-container {
        gap: 2rem;
    }
    
    .hotel-card {
        flex: 0 1 280px;
        min-height: auto;
        padding: 0;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .slogan {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .content {
        padding-bottom: 250px;
    }
    
    .hotels-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hotel-card {
        flex: 0 1 auto;
        width: 90%;
        max-width: 350px;
        min-height: auto;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    .header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding-bottom: 280px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 0.95rem;
    }
    
    .hotel-card {
        padding: 0;
        min-height: auto;
    }
    
    .logo-container {
        height: 120px;
    }
    
    .hotel-name {
        font-size: 0.7rem;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 10;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-item {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-item strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-item div {
    margin: 0.2rem 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 0.8rem 1rem;
    }
    
    .footer-content {
        gap: 1rem;
        flex-direction: column;
    }
    
    .footer-item {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .footer-item strong {
        font-size: 0.9rem;
    }
    
    .footer-item div {
        margin: 0.1rem 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 0.6rem 0.8rem;
    }
    
    .footer-content {
        gap: 0.8rem;
    }
    
    .footer-item {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .footer-item strong {
        font-size: 0.85rem;
    }
    
    .footer-item div {
        margin: 0.05rem 0;
    }
}

