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

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

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

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #d4af37;
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: #b8972e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
}

.btn.secondary {
    background: #2d2d2d;
}

.btn.secondary:hover {
    background: #1a1a1a;
}

/* Welcome Section */
.welcome {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.welcome-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.welcome-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grid-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.diagonal-slogan .diagonal-container {
    background: #1a2a44;
    color: #fff;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.diagonal-slogan .diagonal-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: transform 0.5s ease;
    transform: rotate(45deg) translate(-100%, -100%);
}

.diagonal-slogan:hover .diagonal-container::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.diagonal-slogan .diagonal-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 10px 0;
    color: #d4af37;
    position: relative;
    z-index: 1;
}

.diagonal-slogan .diagonal-container h3 i {
    margin-right: 8px;
}

.diagonal-slogan .diagonal-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 5px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.diagonal-image .diagonal-container {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

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

.diagonal-image:hover .diagonal-container img {
    transform: scale(1.1);
}

.diagonal-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 68, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
}

.diagonal-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4af37;
}

.image-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0 20px;
}

.welcome-content {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.welcome-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a2a44;
}

.welcome-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.welcome-content .btn {
    margin-top: 20px;
}
/* Amenities Section */
.amenities {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.amenities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a2a44;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 15px 0 10px;
    color: #1a2a44;
}

.amenity-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    padding: 0 15px 20px;
}

/* Room Categories Section */
.room-categories {
    padding: 80px 20px;
    text-align: center;
}

.room-categories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a2a44;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.room-card-content {
    padding: 20px;
}

.room-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a2a44;
}

.room-card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d4af37;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/* Inside Pictures Section */
.inside-pictures {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
}

.inside-pictures h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a2a44;
}

.pictures-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.picture-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.picture-card:nth-child(odd) {
    transform: translateY(20px);
}

.picture-card:nth-child(even) {
    transform: translateY(-20px);
}

.picture-card:hover {
    transform: scale(1.05) translateY(0);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.picture-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Food Menu Section */
.food-menu {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.food-menu h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a2a44;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.food-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    perspective: 1000px;
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.food-card:hover .food-image {
    transform: rotateX(5deg) rotateY(5deg);
}

.food-image {
    position: relative;
    width: 280px;
    height: 210px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #d4af37;
    transition: transform 0.4s ease;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 42, 68, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.food-card:hover .food-details {
    opacity: 1;
    transform: scale(1);
}

.food-divider {
    width: 50px;
    height: 2px;
    background: #d4af37;
    margin-bottom: 10px;
}

.food-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d4af37;
    margin: 0 0 10px;
}

.food-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0 15px 15px;
    text-align: center;
}

.details-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #d4af37;
    color: #fff;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.details-btn:hover {
    background: #b8972e;
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.reviews h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a2a44;
}

.carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    display: none;
    text-align: center;
    padding: 30px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s ease;
}

.carousel-item.active {
    display: block;
    transform: scale(1);
    opacity: 1;
}

.carousel-item .stars {
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 15px;
}

.carousel-item p {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.carousel-item span {
    color: #d4af37;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 16px;
}

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

.carousel-controls button {
    background: #d4af37;
    border: none;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.carousel-controls button:hover {
    background: #b8972e;
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #b8972e);
    color: #fff;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn {
    background: #fff;
    color: #1a2a44;
}

.cta .btn:hover {
    background: #f0f0f0;
    color: #d4af37;
}

/* Animations */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal[data-delay] {
    transition-delay: var(--delay);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }
    .hero-content p {
        font-size: 24px;
    }
    .welcome-container {
        gap: 20px;
    }
    .welcome-content h2 {
        font-size: 36px;
    }
    .welcome-content p {
        font-size: 16px;
    }
    .diagonal-slogan .diagonal-container h3 {
        font-size: 20px;
    }
    .diagonal-slogan .diagonal-container p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 20px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    .welcome-container {
        flex-direction: column;
    }
    .welcome-grid {
        order: 1;
    }
    .welcome-content {
        order: 2;
        text-align: center;
    }
    .welcome-content .btn {
        margin: 20px auto;
    }
    .amenities-grid,
    .room-grid,
    .pictures-gallery,
    .food-gallery {
        grid-template-columns: 1fr;
    }
    .picture-card:nth-child(odd),
    .picture-card:nth-child(even) {
        transform: translateY(0);
    }
    .food-image {
        width: 240px;
        height: 180px;
    }
    .food-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .welcome-content h2 {
        font-size: 32px;
    }
    .welcome-content p {
        font-size: 14px;
    }
    .welcome-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .grid-item {
        aspect-ratio: 1/1;
    }
    .diagonal-slogan .diagonal-container h3 {
        font-size: 18px;
    }
    .diagonal-slogan .diagonal-container p {
        font-size: 10px;
    }
    .carousel-controls button {
        padding: 10px;
        font-size: 16px;
    }
    .picture-card img {
        height: 300px;
    }
    .food-image {
        width: 220px;
        height: 165px;
    }
    .food-details h3 {
        font-size: 20px;
    }
    .food-details p {
        font-size: 12px;
    }
    .details-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}