/*
Theme Name: OkHost Conciergerie Theme
Theme URI: https://okhost.ma
Author: Antigravity AI
Description: A premium landing page theme for OkHost Casablanca, inspired by OumiStay.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: okhost
*/

:root {
    --primary: #102A27; /* Dark Navy from logo */
    --accent: #FF9B21;  /* Orange from logo */
    --accent-dark: #F86E1A;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #FDFBF7; /* Warmer background like OumiStay */
    --beige: #F5F1EB;
    --danger: #e74c3c;
    --success: #27ae60;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 12px;
    --container: 1140px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-bg);
}

.serif { font-family: 'Playfair Display', serif; }
.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent { color: var(--accent); }
.text-danger { color: var(--danger); }
.white-text { color: var(--white); }

/* --- Navbar --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1a423d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 42, 39, 0.2);
}

.btn-secondary {
    background: #25D366; /* WhatsApp color */
    color: var(--white);
}

.btn-secondary:hover {
    background: #1eb954;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero --- */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(255, 155, 33, 0.05) 0%, rgba(255, 255, 255, 0) 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 155, 33, 0.1);
    color: var(--accent-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
}

.hero-image-container {
    position: relative;
}

.hero-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 8px solid white;
}

.hero-main-img-placeholder {
    width: 100%;
    height: 500px;
    background: #eee;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.card-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.card-footer {
    font-size: 11px;
    color: var(--success);
    margin-top: 5px;
    font-weight: 600;
}

.icon-accent { color: var(--accent); }

/* --- Story Section --- */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 200px 200px 0 0; /* Arched style like Moroccan architecture */
    box-shadow: var(--shadow);
}

.story-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.s-stat strong {
    display: block;
    font-size: 32px;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.s-stat span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* --- Sections Common --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

/* --- Services --- */
.services-section {
    background: var(--primary);
    color: var(--white);
}

.badge-white {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(255,255,255,0.08);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-item p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

/* --- Steps --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(16, 42, 39, 0.05);
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--primary);
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-light);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- Contact --- */
.contact-section {
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.detail-item i {
    color: var(--accent);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

/* --- Footer --- */
.footer {
    background: #081614;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a { color: white; opacity: 0.6; transition: 0.3s; }
.socials a:hover { opacity: 1; color: var(--accent); }

/* --- Mobile --- */
.mobile-menu-btn { display: none; }

@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; cursor: pointer; }
    .hero-grid, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 { font-size: 40px; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-stats { justify-content: center; }
    .problem-grid, .services-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    .hero-image-container { margin-top: 40px; }
    .story-grid { grid-template-columns: 1fr; }
}
