/* ==========================================
   FRONT PAGE PREMIUM STYLES
   File: assets/css/frontpage-premium.css
   ========================================== */

/* ========== GLOBAL SECTION STYLES ========== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-head p {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #0a2540;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ========== BLOG SECTION ========== */
.blog-compact {
    padding: 80px 0;
    background: white;
}

.blog-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card-compact {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card-compact:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-img-compact {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-compact:hover .blog-img-compact img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a2540;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.blog-date-badge strong {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
}

.blog-date-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content-compact {
    padding: 28px;
}

.blog-meta-compact {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
    font-size: 0.82rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.blog-meta-compact span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-compact i {
    color: #d4af37;
}

.blog-content-compact h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.blog-content-compact h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content-compact h3 a:hover {
    color: #d4af37;
}

.blog-content-compact p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 18px;
}

.read-more-compact {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.read-more-compact:hover {
    gap: 12px;
}

.no-blog-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-blog-message i {
    font-size: 5rem;
    color: #d1d5db;
    margin-bottom: 25px;
}

.no-blog-message h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
}

.why-choose-section .section-badge {
    background: rgba(212, 175, 55, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.why-choose-section .section-head h2,
.why-choose-section .section-head p {
    color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #0a2540;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.why-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* ========== ROOM EXCERPT ========== */
.room-excerpt-compact {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ========== BUTTON FIXES - CENTER TEXT ON MOBILE ========== */
.btn-secondary,
.btn-primary-small,
.btn-outline-small,
.btn-cta-primary,
.btn-cta-secondary,
.btn-search-availability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section,
    .blog-compact,
    .why-choose-section {
        padding: 60px 0;
    }
    
    .section-head {
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .blog-grid-compact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-img-compact {
        height: 200px;
    }
    
    .blog-content-compact {
        padding: 22px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 25px;
    }
    
    /* Button text centering on mobile */
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cta-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-head h2 {
        font-size: 1.6rem;
    }
    
    .section-head p {
        font-size: 0.95rem;
    }
    
    .service-card h3,
    .why-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-content-compact h3 {
        font-size: 1.15rem;
    }
    
    .why-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* ========== NO CONTENT MESSAGES ========== */
.no-rooms-message,
.no-gallery-message,
.no-testimonials-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #f9fafb;
    border-radius: 16px;
}

.no-rooms-message i,
.no-gallery-message i,
.no-testimonials-message i {
    font-size: 5rem;
    color: #d1d5db;
    margin-bottom: 25px;
}

.no-rooms-message h3,
.no-gallery-message h3,
.no-testimonials-message h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-rooms-message p,
.no-gallery-message p,
.no-testimonials-message p {
    color: #6b7280;
    font-size: 1.05rem;
}

/* ========== TEXT CENTER UTILITY ========== */
.text-center {
    text-align: center;
}

/* ========== BUTTON LARGE ========== */
.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ========== CONTAINER WIDE ========== */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}