/* Page Styles for About and other inner pages */

/* Active nav link */
.nav-menu a.active {
    opacity: 1;
    font-weight: 600;
}

/* Hotels Main Layout */
.hotels-main {
    padding-top: 80px;
}

/* Hotels Hero Section */
.hotels-hero {
    padding: 60px 0;
    background: #f8f9fa;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hotels-title {
    font-family: 'Adamina', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    margin-bottom: 25px;
}

.hotels-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.hotels-subdescription {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Hotels List Section */
.hotels-list {
    background: white;
}

.hotel-item {
    padding: 80px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hotel-item:last-child {
    border-bottom: none;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.hotel-item.reverse .hotel-content {
    grid-template-columns: 1fr 1fr;
}

.hotel-item.reverse .hotel-text {
    order: 2;
}

.hotel-item.reverse .hotel-image {
    order: 1;
}

.hotel-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.hotel-title {
    font-family: 'Adamina', serif;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hotel-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.hotel-subdescription {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.hotel-features {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.hotel-features p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.hotel-features p:first-child {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.hotel-features p:last-child {
    margin-bottom: 0;
}

.book-btn {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.book-btn:hover {
    background: #7a3a10;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Conclusion Section */
.conclusion-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.conclusion-title {
    font-family: 'Adamina', serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.conclusion-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-final {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 20px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Specific Styles */
.about-main {
    padding-top: 80px;
}

/* About Hero Section */
.about-hero {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.about-title {
    font-family: 'Adamina', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-subdescription {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Behavior Section */
.behavior-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.behavior-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.behavior-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.behavior-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Comfort Section */
.comfort-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.comfort-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.comfort-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Sections */
.two-column-section {
    padding: 80px 0;
    background: white;
}

.privacy-time-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.column {
    text-align: center;
}

.column-image {
    margin-bottom: 30px;
}

.column-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.column h3 {
    font-family: 'Adamina', serif;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.column p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Quiet Section */
.quiet-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.quiet-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.quiet-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quiet-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quiet-image {
    margin: 40px 0;
}

.quiet-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.quiet-conclusion {
    margin-top: 40px;
}

.rhythm-text {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
.footer-section {
    background: #2c3e50;
    color: white;
}

.footer-section .container:first-child {
    padding:  20px ;
    text-align: center;
}

.footer-section h2 {
    font-family: 'Adamina', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    text-align: center;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-info strong {
    font-weight: 500;
}

/* Footer Navigation */
.footer-nav-section {
    background: #4CAF50;
    padding: 20px 0;
}

.footer-nav-wrapper {
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    background: #1a252f;
    padding: 30px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hotels-title {
        font-size: 36px;
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .hero-content,
    .hotel-content,
    .column-wrapper {
        gap: 40px;
    }
    
    .footer-nav {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hotels-main,
    .about-main {
        padding-top: 70px;
    }
    
    .hero-content,
    .hotel-content,
    .column-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hotel-item.reverse .hotel-content {
    grid-template-columns: 1fr;
    gap: 30px;
}
    
    .hotel-item.reverse .hotel-text,
    .hotel-item.reverse .hotel-image {
        order: unset;
    }
    
    .hero-image img,
    .hotel-image img,
    .column-image img {
        height: 250px;
    }
    
    .hotels-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .hotel-title {
        font-size: 24px;
    }
    
    .behavior-section h2,
    .comfort-section h2,
    .quiet-section h2,
    .footer-section h2,
    .conclusion-title {
        font-size: 28px;
    }
    
    .column h3 {
        font-size: 22px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hotels-hero,
    .about-hero,
    .behavior-section,
    .comfort-section,
    .two-column-section,
    .privacy-time-section,
    .quiet-section,
    .hotels-list .hotel-item,
    .conclusion-section {
        padding: 60px 0;
    }
    
    .hotels-title {
        font-size: 24px;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .hotel-title {
        font-size: 20px;
    }
    
    .behavior-section h2,
    .comfort-section h2,
    .quiet-section h2,
    .footer-section h2,
    .conclusion-title {
        font-size: 24px;
    }
    
    .column h3 {
        font-size: 20px;
    }
    
    .hotels-description,
    .hotels-subdescription,
    .about-description,
    .about-subdescription,
    .hotel-description,
    .hotel-subdescription,
    .behavior-text,
    .behavior-subtext,
    .comfort-text,
    .quiet-text,
    .quiet-subtext,
    .column p,
    .footer-description,
    .conclusion-text,
    .conclusion-subtext,
    .conclusion-final {
        font-size: 15px;
    }
    
    .hero-image img,
    .hotel-image img,
    .column-image img {
        height: 200px;
    }
    
    .footer-section .container:first-child {
        padding: 60px 20px 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}