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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: rgba(44, 62, 80, 0.95);
    padding: 1rem 0;
    transition: all 0.3s;
}

.brand-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3498db !important;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s;
}

.btn-custom {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 1.4s;
}

.btn-custom:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

section {
    padding: 80px 0;
}

#about {
    background: #f8f9fa;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    cursor: pointer;
}

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

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

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

.room-card-body h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.room-price {
    color: #3498db;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
}

.facility-card, .service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.facility-card:hover, .service-item:hover {
    transform: translateY(-5px);
}

.facility-icon, .service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

#contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    color: #333;
}

.contact-form h3 {
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
}

.contact-info {
    padding: 20px;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: rgba(44, 62, 80, 0.95);
    padding: 1rem 0;
    transition: all 0.3s;
}

.brand-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #3498db;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3498db !important;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s;
}

.hero-links {
    animation: fadeInUp 1.6s;
}

.hero-links a {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.hero-links a:hover {
    opacity: 1;
}

.btn-custom {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 1.4s;
}

.btn-custom:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

section {
    padding: 80px 0;
}

#about {
    background: #f8f9fa;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    cursor: pointer;
}

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

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

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

.room-card-body h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.room-price {
    color: #3498db;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
}

.facility-card, .service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.facility-card:hover, .service-item:hover {
    transform: translateY(-5px);
}

.facility-icon, .service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

#contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    color: #333;
}

.contact-form h3 {
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
}

.contact-info {
    padding: 20px;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-links {
    margin-bottom: 10px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .brand-logo {
        height: 40px;
        width: 40px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
}