/* About Page Specific Styles */

/* Main Content */
.main-content {
    margin-top: 80px;
    background: white;
}

/* Active Navigation Link */
.nav-link.active {
    color: #f0f0f0;
    font-weight: 600;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: white;
}

.page-title {
    font-family: 'Concert One', cursive;
    font-size: 48px;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.journey-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.journey-image {
    text-align: center;
    margin-top: 40px;
}

.journey-image img {
    max-width: 600px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Design Section */
.design-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.design-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.design-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.design-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.design-image-left img,
.design-image-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: left;
}

.feature-title {
    font-family: 'Concert One', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.feature-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.feature-image {
    margin-top: 30px;
}

.feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Purpose Section */
.purpose-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.purpose-item {
    text-align: left;
}

.purpose-title {
    font-family: 'Concert One', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.purpose-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.purpose-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #9ACD32;
    border-radius: 8px;
    margin-top: 20px;
}

/* Brand Statement */
.brand-statement {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.brand-content {
    max-width: 1000px;
    margin: 0 auto;
}

.brand-title {
    font-family: 'Concert One', cursive;
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-family: 'Concert One', cursive;
    font-size: 24px;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* About Company Section */
.about-company {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.company-title {
    font-family: 'Concert One', cursive;
    font-size: 36px;
    color: white;
    margin-bottom: 40px;
}

.company-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.company-text {
    font-size: 16px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #9ACD32;
    transform: translateY(-2px);
}

/* Footer Adjustments */
.copyright {
    text-align: center;
    margin-top: 20px;
}

.copyright p {
    font-size: 14px;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .purpose-grid {
        gap: 60px;
    }
    
    .feature-title,
    .purpose-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .design-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-item,
    .purpose-item {
        text-align: center;
    }
    
    .brand-title {
        font-size: 32px;
    }
    
    .brand-subtitle {
        font-size: 20px;
    }
    
    .company-title {
        font-size: 28px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .journey-section,
    .design-section,
    .features-section,
    .purpose-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .feature-title,
    .purpose-title {
        font-size: 22px;
    }
    
    .brand-title {
        font-size: 24px;
    }
    
    .brand-subtitle {
        font-size: 16px;
    }
    
    .journey-image img {
        height: 250px;
    }
    
    .design-image-left img,
    .design-image-right img {
        height: 200px;
    }
    
    .feature-image img {
        height: 200px;
    }
    
    .purpose-quote {
        padding: 15px;
        font-size: 14px;
    }
}

/* Animation Effects */
.feature-item,
.purpose-item {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.animate,
.purpose-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.feature-image img,
.design-image-left img,
.design-image-right img {
    transition: transform 0.3s ease;
}

.feature-image img:hover,
.design-image-left img:hover,
.design-image-right img:hover {
    transform: scale(1.05);
}

/* Category Pages Styles */

/* Category Hero Section */
.category-hero {
    padding: 80px 0;
    background: white;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image-side img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-title {
    font-family: 'Concert One', cursive;
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.category-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Hotels Section */
.hotels-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.hotel-item {
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.hotel-item:last-child {
    margin-bottom: 0;
}

.hotel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.hotel-content.reverse {
    direction: rtl;
}

.hotel-content.reverse .hotel-text {
    direction: ltr;
}

.hotel-text {
    padding: 60px 50px;
}

.hotel-name {
    font-family: 'Concert One', cursive;
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hotel-subtitle {
    font-size: 16px;
    color: #9ACD32;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.hotel-image {
    height: 400px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-item:hover .hotel-image img {
    transform: scale(1.05);
}

.book-button {
    display: block;
    width: 200px;
    margin: 30px auto;
    background: linear-gradient(135deg, #9ACD32, #7CB342);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(154, 205, 50, 0.3);
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(154, 205, 50, 0.4);
}

/* Brand Statement Section */
.brand-statement-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.brand-statement-text {
    font-family: 'Concert One', cursive;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.brand-statement-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Philosophy Section (for spa and casino pages) */
.philosophy-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.philosophy-title {
    font-family: 'Concert One', cursive;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.philosophy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design for Category Pages */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 40px;
    }
    
    .category-title {
        font-size: 36px;
    }
    
    .hotel-name {
        font-size: 28px;
    }
    
    .hotel-text {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image-side img {
        height: 250px;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .hotel-content,
    .hotel-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .hotel-text {
        padding: 30px 20px;
        text-align: center;
    }
    
    .hotel-image {
        order: -1;
        height: 250px;
    }
    
    .hotel-name {
        font-size: 24px;
    }
    
    .brand-statement-text {
        font-size: 28px;
    }
    
    .philosophy-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .category-hero,
    .hotels-section,
    .brand-statement-section,
    .philosophy-section {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .hotel-item {
        margin-bottom: 60px;
    }
    
    .hotel-text {
        padding: 20px 15px;
    }
    
    .hotel-name {
        font-size: 20px;
    }
    
    .hotel-description {
        font-size: 14px;
    }
    
    .brand-statement-text {
        font-size: 20px;
    }
    
    .brand-statement-subtitle {
        font-size: 16px;
    }
    
    .philosophy-title {
        font-size: 20px;
    }
    
    .philosophy-text {
        font-size: 14px;
    }
    
    .book-button {
        width: 150px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animation Effects for Category Pages */
.hotel-item {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.hotel-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.hotel-item:nth-child(1) { transition-delay: 0.1s; }
.hotel-item:nth-child(2) { transition-delay: 0.2s; }
.hotel-item:nth-child(3) { transition-delay: 0.3s; }

/* Text Selection */
::selection {
    background: rgba(154, 205, 50, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(154, 205, 50, 0.3);
    color: #333;
}