/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo-icon {
    width: 60px;
    height: 40px;
    background: url("../assets/logo.png") no-repeat center center;
    background-size: contain; /* or cover, depending on your need */
    position: relative;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.logo-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    position: absolute;
}

.logo-icon::after {
    content: '';
    width: 25px;
    height: 3px;
    background: #000;
    position: absolute;
    transform: rotate(45deg);
}

.logo-text {
    color: #FFC107;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

.logo:hover .logo-text {
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #FFC107;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFC107;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFC107;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23333" width="1200" height="600"/><rect fill="%23FFC107" x="100" y="50" width="200" height="150" opacity="0.1"/><rect fill="%23FFC107" x="800" y="200" width="300" height="200" opacity="0.1"/><rect fill="%23FFC107" x="400" y="350" width="400" height="100" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero-content .highlight {
    color: #FFC107;
    position: relative;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFC107;
    opacity: 0.7;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #FFC107;
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #666;
}

.highlight-text {
    color: #FFC107;
    font-weight: bold;
}

/* About Section */
.about {
    background: #fff;
    color: #333;
}

.about h2 {
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    line-height: 1.8;
    color: #666;
}

/* Accommodations Section */
.accommodations {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
}

.accommodations h2 {
    color: #fff;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.room-card:hover {
    transform: scale(1.05);
    border-color: #FFC107;
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.room-image {
    height: 200px;
    background: linear-gradient(45deg, #FFC107 0%, #FFD54F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    transition: all 0.3s ease;
}

.room-card:hover .room-image {
    transform: scale(1.1);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    color: #FFC107;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.room-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.room-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-features li {
    padding: 0.3rem 0;
    color: #aaa;
    position: relative;
    padding-left: 20px;
}

.room-features li::before {
    content: '✓';
    color: #FFC107;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Amenities Section */
.amenities {
    background: #f8f9fa;
    color: #333;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.amenity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.2);
}

.amenity-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.3);
}

.amenity-item div:last-child {
    font-weight: 500;
    color: #333;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
}

.contact h2 {
    color: #fff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.contact-item h3 {
    color: #FFC107;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    line-height: 1.8;
}

.contact-item a {
    color: #FFC107;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #FFD54F;
}

.map-link, .learn-more {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.map-link:hover, .learn-more:hover {
    border-bottom-color: #FFC107;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 2rem 0 1rem;
    border-top: 3px solid #FFC107;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    color: #FFC107;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #FFC107;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-block;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #FFC107;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.05);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 40px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.card-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}