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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

.logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
    display: block;
  }
  

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 2rem;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #FC8F54;
}

.book-btns {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-btns:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/aape3.jpg') center/cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2)); */
    z-index: -1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 80%;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 70%;
    animation-delay: -7s;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: heroEntrance 1.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FC8F54;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    animation: slideInRight 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

.btn-primary {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite, pulse 2s infinite;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    border-color: #FC8F54;
}

.scroll-arrow::after {
    content: '↓';
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Animations */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 4px 20px rgba(102, 126, 234, 0.3), 0 0 30px rgba(118, 75, 162, 0.2);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

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

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

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

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        padding: 1rem;
    }

    .navbar.scrolled {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* About Section Container */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #764ba2, #FC8F54);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .about-content {
    flex: 1;
    min-width: 300px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .mission-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-left: 4px solid #FC8F54;
    margin-bottom: 30px;
    border-radius: 8px;
  }
  
  .mission-box h3 {
    font-size: 1.5rem;
    color: #FC8F54;
  }
  
  .core-values h3 {
    font-size: 1.5rem;
    color: #FC8F54;
    margin-bottom: 15px;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
  }
  
  .value-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
  }
  
  .highlights {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
  }
  
  .highlights li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  

/* ===== ROOMS SECTION STYLES ===== */
.rooms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.03) 0%, rgba(252, 143, 84, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -25%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #764ba2 0%, #FC8F54 100%);
    border-radius: 50%;
    opacity: 0.08;
    animation: floatReverse 25s ease-in-out infinite;
}

.rooms-section::after {
    content: '';
    position: absolute;
    bottom: -35%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.06;
    animation: float 20s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rooms-header {
    text-align: center;
    margin-bottom: 70px;
    animation: slideInUp 1s ease-out;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: slideInUp 1s ease-out 0.2s both;
}

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

/* ===== CAROUSEL STYLES ===== */
.room-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    animation: autoScroll 12s infinite linear;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 143, 84, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Pause animation on hover */
.room-card:hover .carousel-track {
    animation-play-state: paused;
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.room-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(252, 143, 84, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(252, 143, 84, 0.2);
}

.room-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.9rem;
    color: #888;
    margin-top: -5px;
}

.book-btn {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 143, 84, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    border-left: 5px solid;
    border-image: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%) 1;
    animation: slideInUp 1s ease-out 0.6s both;
}

.pricing-note h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.pricing-note p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Animations */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    25.01% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    50.01% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    75.01% { transform: translateX(-300%); }
    100% { transform: translateX(-400%); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(8deg); 
    }
}

@keyframes floatReverse {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(-5deg); 
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .rooms-section {
        padding: 60px 0;
    }

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

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-content {
        padding: 25px;
    }

    .room-pricing {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .book-btn {
        text-align: center;
        width: 100%;
    }

    .pricing-note {
        margin-top: 40px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .room-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .room-features {
        gap: 8px;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}







  .gallery-section {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
  }

  .gallery-section h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
  }

  .gallery-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .filter-buttons {
    margin-bottom: 30px;
  }

  .filter-buttons button {
    background-color: white;
    color: #764ba2;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .filter-buttons button:hover {
    background-color: #f3e5f5;
  }

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

  .gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    position: relative;
  }

  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
  }

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

  .caption {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 1em;
  }

  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 80%;
  }

  .lightbox:target {
    display: flex;
  }

  .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
  }


  .contact-section {
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
  }

  .contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }

  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
    backdrop-filter: blur(12px);
  }

  .contact-form {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    min-width: 320px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .contact-form button {
    background: #FC8F54;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background: #d9713c;
  }

  .contact-info {
    text-align: left;
    flex: 1;
    min-width: 280px;
  }

  .contact-info h3 {
    margin-bottom: 20px;
  }

  .contact-info p {
    margin: 10px 0;
    font-size: 1rem;
  }

  .contact-info a {
    color: #ffd9b2;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  #mapToggleBtn {
    padding: 10px 20px;
    margin: 20px 0;
    font-size: 16px;
    cursor: pointer;
  }
  
  .map-container {
    display: none;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  .footer {
    background: black;
    color: white;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-contact,
  .footer-links,
  .footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 15px;
  }
  
  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .footer-contact p,
  .footer-links a,
  .footer-social a {
    margin: 5px 0;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .footer-links nav a:hover,
  .footer-contact a:hover,
  .footer-social a:hover {
    color: #FC8F54;
    text-decoration: underline;
  }
  
  .footer-social .social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    justify-content: center;
  }
  
  .footer-social a {
    color: white;
    border: 1.5px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .footer-social a:hover {
    background-color: #FC8F54;
    color: #764ba2;
    border-color: #FC8F54;
    cursor: pointer;
  }
  
  .footer-copy {
    margin-top: 25px;
    font-size: 0.9rem;
    opacity: 0.8;
  }
  

  .restaurant-bar-section {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    background-image: url(../images/aape5.jpg);
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.dining-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.dining-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.dining-card:hover::before {
    left: 100%;
}

.dining-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-description {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
}

.card-features li {
    color: white;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FC8F54;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(45deg, #FC8F54, #ff6b35);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(252, 143, 84, 0.4);
}

.hours-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 60px;
}

.hours-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.hours-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hours-item h4 {
    color: #FC8F54;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hours-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 30px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
}

.modal-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    padding: 0 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin: 5px;
}

.tab-button.active,
.tab-button:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.menu-content {
    padding: 0 30px 30px;
}

.menu-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.menu-section.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.menu-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden; /* prevents image from overflowing the box */
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the image fills the box without distortion */
    display: block;
}


.menu-item-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.menu-item-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.menu-item-price {
    color: #FC8F54;
    font-size: 1.2rem;
    font-weight: 700;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .dining-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dining-card {
        padding: 30px;
    }
    
    .hours-section {
        padding: 30px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 1% auto;
    }

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

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

    .menu-tabs {
        padding: 0 15px;
    }

    .menu-content {
        padding: 0 15px 20px;
    }
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.reviews-header {
    padding: 24px;
    border-bottom: 1px solid #e8eaed;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
}

.reviews-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 20px;
    height: 20px;
    fill: #FC8F54;
}

.star.empty {
    fill: #ddd;
}

.review-count {
    font-size: 14px;
    opacity: 0.9;
}

.reviews-list {
    padding: 0;
}

.review-item {
    padding: 20px 24px;
    border-bottom: 1px solid #e8eaed;
    transition: background-color 0.2s ease;
}

.review-item:hover {
    background-color: #f8f9fa;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FC8F54, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 500;
    color: #202124;
    font-size: 14px;
}

.review-date {
    color: #5f6368;
    font-size: 12px;
    margin-top: 2px;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.review-star {
    width: 16px;
    height: 16px;
    fill: #FC8F54;
}

.review-star.empty {
    fill: #ddd;
}

.review-text {
    color: #202124;
    line-height: 1.5;
    font-size: 14px;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.google-icon {
    width: 16px;
    height: 16px;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}



.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
}

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

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.star {
    color: #FFD700;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(118, 75, 162, 0.3);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.reviewer-details h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 3px;
    font-weight: 600;
}

.reviewer-details p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    background: linear-gradient(135deg, #FC8F54 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .reviews-container {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
}

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

.review-card {
    animation: fadeInUp 0.6s ease-out;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }
