/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#top_line {
    background: #C71615;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

#top_line strong {
    margin-left: 5px;
}

#top_links {
    list-style: none;
    text-align: right;
    margin: 0;
}

#top_links li {
    display: inline-block;
    margin-left: 15px;
}

#top_links a {
    color: #fff;
    text-decoration: none;
}

#logo {
    padding: 15px 0;
}

#logo img {
    display: block;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-menu {
    flex: 1;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.menu li {
    position: relative;
}

.menu a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s;
}

.menu a:hover {
    color: #C71615;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 200px;
    list-style: none;
    z-index: 100;
}

.menu li:hover .sub-menu {
    display: block;
}

.sub-menu li {
    border-bottom: 1px solid #eee;
}

.sub-menu a {
    padding: 10px 15px;
}

/* Slider Section */
#slideshow {
    margin-bottom: 40px;
}

/* Main Content */
.margin_60 {
    margin: 60px 0;
}

h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Hotel Cards */
.hotel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hotel_container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.img_container {
    position: relative;
    overflow: hidden;
}

.img_container img {
    width: 100%;
    height: auto;
    display: block;
}

.ribbon_3 {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #C71615;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    z-index: 10;
}

.short_info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.hotel_title {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel_title h3 {
    color: #C71615;
    font-size: 18px;
    margin-bottom: 15px;
}

.hotel_title h7 {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.hotel_title small {
    display: block;
    margin-top: 10px;
    color: #999;
}

/* Gallery */
.wpb_single_image {
    margin-bottom: 20px;
}

.wpb_single_image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.btn_1 {
    display: inline-block;
    background: #C71615;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn_1:hover {
    background: #a01312;
}

.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}

/* Partners Section */
.container img {
    max-width: 100%;
    height: auto;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

footer a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: #C71615;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

#phone {
    font-size: 20px;
    font-weight: bold;
    color: #C71615;
}

#email_footer {
    font-size: 14px;
}

#social_footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    margin-top: 30px;
}

#social_footer p {
    margin-top: 15px;
    color: #999;
}

/* Forms */
.wpforms-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wpforms-submit {
    background: #C71615;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.wpforms-submit:hover {
    background: #a01312;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 0;
    }

    .hotel-list .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h2 {
        font-size: 22px;
    }
}

/* Utility Classes */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-sm-3, .col-sm-4, .col-sm-6, .col-sm-12,
.col-md-2, .col-md-3, .col-md-4, .col-md-6, .col-md-12 {
    padding: 0 15px;
    margin-bottom: 20px;
}

.col-sm-12, .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-4, .col-sm-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-md-3, .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-md-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

@media (max-width: 768px) {
    .col-sm-3, .col-sm-4, .col-sm-6,
    .col-md-2, .col-md-3, .col-md-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
