@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

header {
    background: #2d2d3a;
    color: #fff;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    padding: 8px 40px;
    background: #23232e;
}

.top-bar .social-icons a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
    font-family: FontAwesome, Arial;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5em;
}

.logo-icon {
    font-size: 1.5em;
    margin-right: 8px;
    color: #ffb300;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 18px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a.active,
nav ul li a:hover {
    color: #ffb300;
}

.book-btn {
    background: #ffb300;
    color: #222;
    padding: 10px 22px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.book-btn:hover {
    background: #fff;
    color: #ffb300;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.reserve-btn {
    background: #ffb300;
    color: #222;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.explore-btn {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: #222;
    color: #ffb300;
    transform: translateY(-3px);
}

.explore-btn:hover {
    background: #fff;
    color: #222;
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #ffb300;
}

.booking-form {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: flex;
    padding: 18px 24px;
    gap: 14px;
    align-items: center;
}

.booking-form input,
.booking-form select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1em;
    outline: none;
    min-width: 120px;
}

.booking-form button {
    background: #ffb300;
    color: #222;
    border: none;
    padding: 12px 22px;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.booking-form button:hover {
    background: #222;
    color: #ffb300;
}

@media (max-width: 900px) {
    .hero-content {
        margin: 60px 0 0 20px;
    }
    .booking-form {
        flex-direction: column;
        gap: 10px;
        left: 50%;
        bottom: -120px;
        width: 90%;
        padding: 18px 10px;
    }
    nav, .top-bar {
        padding: 10px 10px;
    }
}

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

.page-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.page-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

.page-card:hover img {
    transform: scale(1.05);
}

.page-content {
    padding: 20px;
}

.page-content h2 {
    margin-top: 0;
    color: #2d2d3a;
}

.page-content p {
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-card img {
        height: 200px;
    }
}

.blog-list, .about-card, .contact-card {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.blog-card, .about-card, .contact-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 350px;
    min-width: 250px;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover, .about-card:hover, .contact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.blog-card h2, .about-card h2, .contact-card h2 {
    margin-top: 0;
    color: #ffb300;
    font-size: 1.4em;
}

.blog-card p, .about-card p, .contact-card p {
    color: #444;
    font-size: 1em;
    margin-bottom: 24px;
}

.blog-card .book-btn, .about-card .book-btn, .contact-card .book-btn {
    display: inline-block;
    background: #ffb300;
    color: #222;
    padding: 10px 22px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}

.blog-card .book-btn:hover, .about-card .book-btn:hover, .contact-card .book-btn:hover {
    background: #222;
    color: #ffb300;
}

.book-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.book-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.book-form input,
.book-form select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
}

.book-form button {
    grid-column: 1 / -1;
    background: #ffb300;
    color: #222;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.book-form button:hover {
    background: #222;
    color: #ffb300;
}

@media (max-width: 768px) {
    .book-form {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Availability Section */
.availability-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

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

.section-header h2 {
    font-size: 2.5em;
    color: #2d2d3a;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1em;
}

.availability-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    margin-bottom: 8px;
}

.form-group label i {
    color: #ffb300;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ffb300;
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.1);
    outline: none;
}

.availability-form button {
    width: 100%;
    padding: 15px;
    background: #ffb300;
    color: #222;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.availability-form button:hover {
    background: #222;
    color: #ffb300;
    transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .availability-card {
        padding: 20px;
    }
}

.room-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.room-table th,
.room-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.room-table th {
    background-color: #2d2d3a;
    color: #fff;
    font-weight: 500;
}

.room-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.room-table tr:hover {
    background-color: #f5f5f5;
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-video {
    margin-top: 40px;
}

.room-video video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}

/* Responsive Grid Layouts */
.room-list, .blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Responsive Card Styles */
.room-card, .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

@media (max-width: 768px) {
    .room-card img, .blog-card img {
        height: 200px;
    }
    
    .room-list, .blog-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.room-content {
    padding: 20px;
}

.room-content h2 {
    margin-top: 0;
    color: #2d2d3a;
}

.room-content p {
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1em;
    }
}

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

.about-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.about-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

.about-card:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 20px;
}

.about-content h2 {
    margin-top: 0;
    color: #2d2d3a;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content ul {
    color: #666;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card img {
        height: 200px;
    }
}

.contact-main {
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 800px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-info h2 {
    color: #2d2d3a;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item .icon {
    margin-right: 15px;
    font-size: 1.2em;
}

.info-item p {
    margin: 0;
    color: #666;
}

.contact-form-container {
    padding: 20px;
}

.contact-form-container h2 {
    color: #2d2d3a;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #444;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb300;
}

.submit-btn {
    background: #ffb300;
    color: #222;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #222;
    color: #ffb300;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .contact-main {
        padding: 40px 20px;
    }
}
