/* Page Specific Styles */

/* Main Layout */
.about-main,
.page-main {
    margin-top: 80px;
    background: #ffffff;
}

/* Navigation Active State */
.nav-menu a.active {
    opacity: 0.8;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
}

/* Page Title */
.page-title {
    font-family: 'Krona One', sans-serif;
    font-size: 36px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Titles */
.section-title {
    font-family: 'Krona One', sans-serif;
    font-size: 28px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
    text-align: center;
}

/* Hero Section for all pages */
.hero-section {
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image {
    border-radius: 15px;
    overflow: hidden;
}

.hero-text {
    /* Text styling handled by existing classes */
}

/* Hotel Sections */
.hotel-section {
    padding: 80px 0;
}

.hotel-section.hotel-reverse {
    background: #fafafa;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-reverse .hotel-content {
    grid-template-columns: 1fr 1fr;
}

.hotel-reverse .hotel-image {
    order: 1;
}

.hotel-reverse .hotel-text {
    order: 2;
}

.hotel-title {
    font-family: 'Krona One', sans-serif;
    font-size: 24px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.hotel-image {
    border-radius: 15px;
    overflow: hidden;
}

.hotel-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.hotel-features {
    margin-top: 30px;
}

.hotel-features h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hotel-features ul {
    list-style: none;
    padding: 0;
}

.hotel-features li {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.hotel-features li::before {
    content: '•';
    color: #ff8c00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Book Button */
.book-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
    max-width: 200px;
}

.book-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    text-align: center;
   
}

.philosophy-section .section-title {
   
    margin-bottom: 40px;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.philosophy-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Atmosphere Section */
.atmosphere-section {
    padding: 80px 0;
    background: #fafafa;
}

.atmosphere-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.atmosphere-text {
    margin-bottom: 40px;
}

.atmosphere-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.atmosphere-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.atmosphere-caption {
    margin-top: 30px;
}

.atmosphere-caption p {
    font-size: 16px;
    color: #777;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

/* Intentions Section */
.intentions-section {
    padding: 80px 0;
    text-align: center;
}

.intentions-content {
    max-width: 800px;
    margin: 0 auto;
}

.intentions-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Building Section */
.building-section {
    padding: 80px 0;
    background: #fafafa;
}

.building-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.building-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.building-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.building-item:nth-child(even) .building-image {
    order: 2;
}

.building-item:nth-child(even) .building-content {
    order: 1;
}

.building-image {
    border-radius: 15px;
    overflow: hidden;
}

.building-content h3 {
    font-family: 'Krona One', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.building-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.privacy-image {
    border-radius: 15px;
    overflow: hidden;
}

/* Time Section */
.time-section {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.time-content {
    max-width: 800px;
    margin: 0 auto;
}

.time-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.time-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .building-item,
    .hotel-content,
    .hero-content {
        gap: 40px;
    }
    
    .privacy-content {
        gap: 40px;
    }
    
    .hotel-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .philosophy-section,
    .atmosphere-section,
    .intentions-section,
    .building-section,
    .privacy-section,
    .time-section,
    .hero-section,
    .hotel-section {
        padding: 60px 0;
    }
    
    .building-item,
    .hotel-content,
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .building-item:nth-child(even),
    .hotel-reverse .hotel-content {
        grid-template-columns: 1fr;
    }
    
    .building-item:nth-child(even) .building-image,
    .building-item:nth-child(even) .building-content,
    .hotel-reverse .hotel-image,
    .hotel-reverse .hotel-text {
        order: initial;
    }
    
    .building-content h3,
    .hotel-title {
        font-size: 18px;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .atmosphere-text,
    .philosophy-content,
    .intentions-content,
    .time-content {
        text-align: left;
    }
    
    .section-title {
        text-align: left;
    }
    
    .page-title {
        text-align: left;
    }
    
    .atmosphere-caption {
        text-align: center;
    }
    
    .time-section {
        text-align: left;
    }
    
    .philosophy-section {
        text-align: center;
    }
    
    .hero-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .philosophy-section,
    .atmosphere-section,
    .intentions-section,
    .building-section,
    .privacy-section,
    .time-section {
        padding: 60px 0;
    }
    
    .building-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .building-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .building-item:nth-child(even) .building-image,
    .building-item:nth-child(even) .building-content {
        order: initial;
    }
    
    .building-content h3 {
        font-size: 18px;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .atmosphere-text,
    .philosophy-content,
    .intentions-content,
    .time-content {
        text-align: left;
    }
    
    .section-title {
        text-align: left;
    }
    
    .page-title {
        text-align: left;
    }
    
    .atmosphere-caption {
        text-align: center;
    }
    
    .time-section {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .building-content h3,
    .hotel-title {
        font-size: 16px;
    }
    
    .philosophy-content p,
    .atmosphere-text p,
    .intentions-content p,
    .building-content p,
    .privacy-text p,
    .time-content p,
    .hotel-text p {
        font-size: 14px;
    }
    
    .atmosphere-caption p {
        font-size: 14px;
    }
    
    .philosophy-section,
    .atmosphere-section,
    .intentions-section,
    .building-section,
    .privacy-section,
    .time-section,
    .hero-section,
    .hotel-section {
        padding: 40px 0;
    }
    
    .book-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Smooth animations */
.building-item,
.privacy-content,
.atmosphere-content,
.hotel-content,
.hero-content {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.building-item.animate,
.privacy-content.animate,
.atmosphere-content.animate,
.hotel-content.animate,
.hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Image loading states */
.building-image img,
.privacy-image img,
.atmosphere-image img,
.hotel-image img,
.hero-image img {
    transition: opacity 0.5s ease;
}

/* Hover effects */
.building-item:hover .building-image img,
.hotel-content:hover .hotel-image img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.privacy-content:hover .privacy-image img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.atmosphere-image:hover img,
.hero-image:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Brand link styling */
.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-brand a:hover {
    opacity: 0.9;
}

/* Section spacing adjustments */
section {
    scroll-margin-top: 100px;
}

/* Enhanced typography */
.philosophy-content p:first-child {
    font-weight: 500;
}

.time-content p:nth-last-child(2),
.time-content p:last-child {
    font-weight: 500;
    margin-top: 30px;
}

/* Focus states for accessibility */
.nav-menu a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .about-main {
        margin-top: 0;
    }
    
    .building-item,
    .privacy-content {
        break-inside: avoid;
    }
}