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


body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7fb;
    color: #222;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #0f4c81, #2b7fd3);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover,
nav a.active {
    background-color: rgba(255,255,255,0.2);
}


.hero {
    position: relative;
    height: 350px;
    background-image: url("images/hero-hotel.jpg"); 
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,40,0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-overlay p {
    max-width: 600px;
    margin-bottom: 20px;
}


main {
    padding: 20px;
}

.content-section {
    max-width: 900px;
    margin: 0 auto 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-section h1,
.content-section h2 {
    color: #0f4c81;
    margin-bottom: 10px;
}

.content-section p {
    margin-bottom: 15px;
}

/* Intro cards */
.intro-section {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.special-section {
    max-width: 900px;
    margin: 20px auto 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.special-text {
    margin-top: 10px;
    font-weight: bold;
    color: #0f4c81;
}


.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #2b7fd3, #0f4c81);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 2px solid #0f4c81;
    color: #0f4c81;
    background-color: #fff;
}

.btn-outline:hover {
    background-color: #e7f0fb;
}


.about-layout {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 20px;
}

.rounded-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.image-card img {
    width: 100%;
    border-radius: 10px;
}

.image-card {
    max-width: 500px;
    margin: 20px 0;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fdfdfd;
}

th, td {
    border: 1px solid #d0d6e0;
    padding: 8px 10px;
    text-align: left;
}

th {
    background-color: #e3edfa;
    color: #0f4c81;
}

.schedule-table {
    margin-top: 15px;
}


form {
    margin-top: 15px;
}

.form-row {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 4px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #c5cedd;
}

textarea {
    resize: vertical;
}


.center-text {
    text-align: center;
}


footer {
    background-color: #0f4c81;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}