/* About Page Specific Styles */

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Active Navigation Link */
.nav-link.active {
    color: #ffd700;
    font-weight: 600;
}

/* Category Pages Hero Section */
.category-hero {
    background: #f8f8f8;
    padding: 60px 0 80px;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.category-title {
    font-family: 'Bigshot One', cursive;
    font-size: 36px;
    color: #2d1b4e;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content-grid .hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.hero-content-grid .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Hotels Section */
.hotels-section {
    background: white;
    padding: 80px 0;
}

.hotel-item {
    margin-bottom: 80px;
}

.hotel-item:last-child {
    margin-bottom: 0;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

.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-text h2 {
    font-family: 'Bigshot One', cursive;
    font-size: 28px;
    color: #2d1b4e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hotel-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.hotel-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.book-btn {
    background: #ffd700;
    color: #2d1b4e;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin: 0 auto;
}

.book-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.philosophy-section {
    background: #2d1b4e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.philosophy-title {
    font-family: 'Bigshot One', cursive;
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.philosophy-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 20px;
}

.philosophy-text p:last-child {
    margin-bottom: 0;
}

/* About Page Specific Styles */
.about-hero {
    background: #f8f8f8;
    padding: 60px 0 80px;
}

.page-title {
    font-family: 'Bigshot One', cursive;
    font-size: 48px;
    color: #2d1b4e;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto 50px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.highlight-text {
    font-style: italic;
    color: #2d1b4e;
    font-weight: 500;
    text-align: center !important;
    font-size: 18px;
}

.hero-image {
    text-align: center;
    margin-top: 50px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Architecture Section */
.architecture-section {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-family: 'Bigshot One', cursive;
    font-size: 36px;
    color: #2d1b4e;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.architecture-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.architecture-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.italic-text {
    font-style: italic;
    color: #2d1b4e;
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
}

.architecture-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.architecture-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.architecture-images img:hover {
    transform: scale(1.02);
}

/* Entertainment Section */
.entertainment-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.entertainment-item h3 {
    font-family: 'Bigshot One', cursive;
    font-size: 24px;
    color: #2d1b4e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.entertainment-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.entertainment-image {
    margin-top: 30px;
}

.entertainment-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Luxury Budget Section */
.luxury-budget-section {
    background: white;
    padding: 80px 0;
}

.luxury-budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.luxury-item h3,
.budget-item h3 {
    font-family: 'Bigshot One', cursive;
    font-size: 24px;
    color: #2d1b4e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.luxury-item p,
.budget-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* Transition Section */
.transition-section {
    background: #2d1b4e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.transition-title {
    font-family: 'Bigshot One', cursive;
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.transition-text {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Bottom CTA Section */
.bottom-cta {
    background: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Bigshot One', cursive;
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cta-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.contact-info {
    margin: 40px 0;
}

.contact-address {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.contact-details {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Footer Adjustments for About Page */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title {
        font-size: 36px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-content-grid,
    .hotel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hotel-item.reverse .hotel-content {
        grid-template-columns: 1fr;
    }
    
    .hotel-item.reverse .hotel-text,
    .hotel-item.reverse .hotel-image {
        order: unset;
    }
    
    .entertainment-grid,
    .luxury-budget-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .architecture-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .entertainment-item h3,
    .luxury-item h3,
    .budget-item h3 {
        font-size: 22px;
    }
    
    .hotel-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 70px;
    }
    
    .about-hero,
    .category-hero {
        padding: 40px 0 60px;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-text {
        margin-bottom: 30px;
    }
    
    .hero-text p,
    .architecture-content p,
    .hero-content-grid .hero-text p {
        text-align: left;
        margin-bottom: 20px;
        font-size: 15px;
    }
    
    .entertainment-item p,
    .luxury-item p,
    .budget-item p,
    .hotel-text p {
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .entertainment-item h3,
    .luxury-item h3,
    .budget-item h3 {
        font-size: 20px;
    }
    
    .hotel-text h2 {
        font-size: 22px;
    }
    
    .philosophy-title,
    .transition-title {
        font-size: 22px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .architecture-section,
    .entertainment-section,
    .luxury-budget-section,
    .hotels-section {
        padding: 60px 0;
    }
    
    .philosophy-section,
    .transition-section,
    .bottom-cta {
        padding: 50px 0;
    }
    
    .hero-image img,
    .hero-content-grid .hero-image img {
        height: 250px;
    }
    
    .architecture-images img {
        height: 200px;
    }
    
    .entertainment-image img {
        height: 200px;
    }
    
    .hotel-image img {
        height: 250px;
    }
    
    .hotel-item {
        margin-bottom: 60px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .category-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .hero-text,
    .architecture-content {
        padding: 0 10px;
    }
    
    .hero-text p,
    .architecture-content p,
    .hero-content-grid .hero-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .entertainment-grid,
    .luxury-budget-grid,
    .hotel-content {
        padding: 0 10px;
    }
    
    .hotel-text {
        padding: 0 10px;
    }
    
    .hotel-text h2 {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .philosophy-title,
    .transition-title {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .transition-text,
    .philosophy-text p {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .cta-title {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .cta-text,
    .cta-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 20px;
    }
    
    .book-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .hotel-item {
        margin-bottom: 50px;
    }
}

/* Animation Effects */
.entertainment-item,
.luxury-item,
.budget-item,
.hotel-item {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.entertainment-item.animate,
.luxury-item.animate,
.budget-item.animate,
.hotel-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.entertainment-image img,
.architecture-images img,
.hotel-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entertainment-image img:hover,
.architecture-images img:hover,
.hotel-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Text Selection */
::selection {
    background: #ffd700;
    color: #2d1b4e;
}

::-moz-selection {
    background: #ffd700;
    color: #2d1b4e;
}