/* page.css - Shared styles for all hotel category pages */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1A1A1A;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 20px 0;
    
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 25px;
    margin-right: 10px;
}

.logo a {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: #00BFB3;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    margin: 20px 0;
    background: linear-gradient(180deg, #39FFBD 0%, #0BF 100%);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
}

.hero-container {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    color: #1A1A1A;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.search-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.powered-by {
    text-align: right;
    margin-bottom: 10px;
}

.powered-by img {
    height: 20px;
    vertical-align: middle;
}

.search-form h3 {
    margin-bottom: 15px;
    color: #1A1A1A;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.search-btn {
    background: linear-gradient(to right, #00BFB3, #0095FF);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.search-btn:hover {
    opacity: 0.9;
}

/* page.css - Specific styles for the About page */

/* Hero Section */
.about-hero {
    background: linear-gradient(180deg, #39FFBD 0%, #0BF 100%);
    padding: 60px 0;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    color: #1A1A1A;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-hero-text p {
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Mission and Values Section */
.mission-values {
    padding: 60px 0;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-box, .values-box {
    background-color: #1A1A1A;
    border-radius: 10px;
    padding: 30px;
    color: white;
}

.mission-icon, .values-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.mission-icon img, .values-icon img {
    width: 100%;
    height: auto;
}

.mission-box h2, .values-box h2 {
    color: #00BFB3;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: left;
}

.mission-box p, .values-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Features Section */
.about-features {
    background-color: #00BFB3;
    padding: 60px 0;
    margin: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    color: #1A1A1A;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-box h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Styles */
.footer {
    background-color: #1A1A1A;
    color: white;
    padding: 40px 0 20px;
}

.footer-top {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 30px;
    height: auto;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: white;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00BFB3;
}

.footer-policy {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-policy a {
    color: white;
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: #00BFB3;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.social-icon.twitter {
    background-image: url('../images/twitter-icon.png');
    background-size: cover;
}

.social-icon.facebook {
    background-image: url('../images/facebook-icon.png');
    background-size: cover;
}

.social-icon.linkedin {
    background-image: url('../images/linkedin-icon.png');
    background-size: cover;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero-content {
        flex-direction: column;
    }
    
    .mission-values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .mission-box, .values-box {
        padding: 20px;
    }
    
    .feature-box {
        padding: 20px;
    }
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 200px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hotel Cards */
.hotel-section {
    margin: 40px 0;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.hotel-card {
    background-color: rgba(30, 30, 30, 0.7);
    padding: 20px;
    overflow: hidden;
    border-radius: 28px;
border: 1px solid #39FFBD;
display: flex;
gap: 20px;
}

.hotel-image {
    border-radius: 24px;
    overflow: hidden;
    max-width: 194px;
    width: 100%;
    flex: 1 0 100%;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-content {
  
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hotel-title {
    color: #00BFB3;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.rating-badge {
    background-color: #00BFB3;
    padding: 5px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-weight: bold;
    color: white;
}

.rating-text {
    font-size: 0.8rem;
    color: white;
}

.verified-reviews {
    font-size: 0.7rem;
    color: white;
}

.hotel-description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.hotel-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00BFB3;
    font-size: 0.9rem;
}

.amenity img {
    width: 20px;
    height: 20px;
}

.see-more-btn {
    background: linear-gradient(to right, #00BFB3, #0095FF);
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    display: block;
    transition: opacity 0.3s ease;
}

.see-more-btn:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-top {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 25px;
    height: auto;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.footer-policy {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 20px;
    color: #00BFB3;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #00BFB3;
    border-radius: 50%;
    display: inline-block;
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1A1A1A;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        visibility: hidden;
        z-index: 10;
    }
    
    .main-nav.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-nav ul, .footer-policy {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 530px) {
  .hotel-card {
    flex-direction: column;
  }

  .hotel-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 100%;
    overflow: hidden;
    flex: 0 1 auto;
  }
  .hero-section {
    padding: 30px 10px;
  }
}

/* Add these styles to the existing page.css file */

/* Contact Page Styles */
.contact-section {
    padding: 40px 0;
}

.contact-container {
    background: linear-gradient(135deg, #00BFB3 0%, #0095FF 100%);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

.contact-container h1 {
    color: #1A1A1A;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-container {
    max-width: 500px;
    margin: 0 auto 30px;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.send-btn {
    background: linear-gradient(90deg, #00BFB3 0%, #0095FF 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 0;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-image {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    max-height: 300px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles for Contact page */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-container h1 {
        font-size: 2rem;
    }
}