/* ==========================================
   LAYOUT STYLES
   Header, Navigation, Footer, Containers
   ========================================== */

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 10px;
}

.logo-icon {
    color: var(--accent-yellow);
    font-size: 2rem;
}

/* Navigation */
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    display: block;
}

nav ul li a:hover {
    color: var(--accent-yellow);
    border-bottom: 2px solid var(--accent-yellow);
}

/* Footer - Minimal Design */
footer {
    background-color: #f9fafb;
    color: #4b5563;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: #111827;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column p {
    color: #6b7280;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #111827;
}

.footer-column ul li i {
    color: #9ca3af;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover {
    background-color: #111827;
    color: #ffffff;
    border-color: #111827;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 0.5rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ==========================================
   SECTION SEPARATIONS - Alternating Backgrounds
   ========================================== */

/* Featured Section - Light */
.featured-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.featured-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb 50%, transparent);
}

/* Latest Content Section - White with top border */
.latest-content-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.latest-content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e5e7eb 50%, transparent);
}

/* Booking Section - Light blue tint */
.booking-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    padding: 5rem 0;
    position: relative;
    border-top: 3px solid var(--accent-yellow);
    border-bottom: 3px solid var(--accent-yellow);
}

/* FAQ Section - White with shadow effect */
.faq-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
    pointer-events: none;
}

/* Advertisement Section - Keep blue */
.advertisement {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    padding: 3rem 0;
    position: relative;
    box-shadow: 0 -4px 20px rgba(10, 36, 99, 0.3), 0 4px 20px rgba(10, 36, 99, 0.3);
}

/* Feedback Section - Light yellow tint */
.feedback-section-home {
    background: linear-gradient(to bottom, #fffef8 0%, #fff9e6 100%);
    padding: 5rem 0;
    position: relative;
}

.feedback-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}
