/*
Theme Name: 16A Exotic Travel Theme
Theme URI: https://16a.us
Description: A clean, minimal luxury travel theme inspired by modern corporate design aesthetics.
Version: 2.0.2
Author: 16A, LLC
Author URI: https://16a.us
Tags: travel, luxury, minimal, clean, destinations
Text Domain: 16a-theme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- BODY / GLOBAL BACKGROUND --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0b1220 0%, #15243a 25%, #1e3a5f 50%, #274875 75%, #0b1220 100%);
    background-size: 300% 300%;
    animation: liquidGradient 18s ease infinite;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    padding-top: 80px;
    min-height: 100vh;
}

@keyframes liquidGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    color: #000000;
    line-height: 1;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.main-navigation a {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.main-navigation a:hover {
    opacity: 0.6;
}

/* --- BUTTONS --- */
.cta-button,
.preview-button {
    background: #000000;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.preview-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- SECTION TITLES --- */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SECTIONS / FROSTED BACKGROUND --- */
.cards-section,
.split-section,
.testimonials-section,
.final-cta {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.cards-section::before,
.split-section::before,
.testimonials-section::before,
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 25, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

/* --- SPLIT SECTION --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    align-items: center;
    padding: 60px 0;
}

.split-content {
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.split-content p,
.split-content ul li {
    color: rgba(255, 255, 255, 0.85);
}

.split-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 600;
}

/* --- CARDS GRID / EMOJIS --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.cards-grid .card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}

.cards-grid .card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 32px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-text,
.testimonial-author h4,
.testimonial-author p {
    color: #ffffff;
}

/* --- FOOTER --- */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 40px 40px;
    text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .split-section { grid-template-columns: 1fr; padding: 40px 0; }
    .split-content { padding: 60px 40px; }
    .cards-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1 { font-size: 40px; }
}

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .split-content { padding: 40px 20px; }
    .hero-content h1 { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 15px; }
    .section-title { font-size: 24px; }
}
