/* arabcam.top - Custom CSS #4 - Golden Sand Theme */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-cream: #faf8f3;
    --bg-sand: #f0ebe0;
    --bg-white: #ffffff;
    --primary-gold: #c9a962;
    --primary-dark: #a88b4a;
    --accent-emerald: #2d6a4f;
    --accent-light: #40916c;
    --text-brown: #3d2914;
    --text-medium: #5c4433;
    --text-light: #8b7355;
    --border-gold: #e5d5b0;
    --shadow: rgba(61, 41, 20, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--bg-cream);
    color: var(--text-brown);
    line-height: 1.8;
    font-size: 17px;
}

a {
    color: var(--accent-emerald);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-brown);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
}

/* Header & Navigation */
.header {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    border-bottom: 2px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-brown);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-emerald);
    border-bottom-color: var(--primary-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-brown);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-cream) 50%, var(--bg-sand) 100%);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-gold);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-emerald), var(--primary-gold));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-brown);
}

.hero h1 span {
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 98, 0.35);
}

.btn-emerald {
    background: var(--accent-emerald);
    color: #fff;
    border-color: var(--accent-emerald);
}

.btn-emerald:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #fff;
}

.btn-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-sand {
    background: var(--bg-sand);
}

.section-white {
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--border-gold);
}

.card-body {
    padding: 1.75rem;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-brown);
}

.card-text {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card .btn {
    width: 100%;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-box h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-box p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Content Block */
.content-block {
    max-width: 760px;
    margin: 0 auto;
}

.content-block h2 {
    margin-top: 2.5rem;
}

.content-block h3 {
    margin-top: 2rem;
    color: var(--accent-emerald);
}

.content-block ul {
    margin: 1.25rem 0;
    padding-left: 1.75rem;
}

.content-block li {
    margin-bottom: 0.6rem;
    color: var(--text-medium);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-light) 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
}

.cta-box .btn {
    background: var(--primary-gold);
    color: #fff;
    border-color: var(--primary-gold);
    position: relative;
}

.cta-box .btn:hover {
    background: #fff;
    color: var(--accent-emerald);
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-brown);
}

.faq-question:hover {
    background: var(--bg-sand);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    border-top: 1px solid var(--border-gold);
}

/* Country Cards - Special styling */
.country-card {
    position: relative;
    overflow: hidden;
}

.country-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-emerald));
}

/* Footer */
.footer {
    background: var(--text-brown);
    color: var(--bg-cream);
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}

.footer-col p {
    color: rgba(250, 248, 243, 0.7);
    font-size: 0.95rem;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: rgba(250, 248, 243, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 243, 0.15);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(250, 248, 243, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.age-warning {
    background: var(--primary-gold);
    color: var(--text-brown);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }

    .hero {
        padding: 3.5rem 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 2px solid var(--border-gold);
        box-shadow: 0 4px 15px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-gold);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .feature-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .card-body {
        padding: 1.25rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.text-emerald { color: var(--accent-emerald); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
