/*
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
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 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 16px;
}

.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);
}

.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;
}

.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(-1px);
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    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: #000000;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.split-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

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

.split-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 20px;
}

.split-content ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.split-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

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

/* Services/Cards Grid */
.cards-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: #f8f9fa;
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecef;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #666666;
}

/* FAQ Section */
.faq-section {
    padding: 100px 40px;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

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

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-nav {
    margin: 30px 0;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-info {
    font-size: 13px;
    color: #999999;
    margin-top: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #e9ecef;
}

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

@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 20px;
    }
}