/*
Theme Name: Hurghada Transfers
Description: WordPress Theme für Flughafen- und Hoteltransfers in der Region Hurghada (El Gouna, Makadi Bay, Sahl Hasheesh, Safaga, Marsa Alam, Sharm El Sheikh).
Version: 1.0
Text Domain: hurghada-transfers
*/

:root {
    --color-primary: #0f6e8c;
    --color-accent: #f2a541;
    --color-dark: #1a2b3c;
    --color-light: #f7f9fb;
    --color-text: #333;
    --radius: 10px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--color-text); line-height: 1.6; background: var(--color-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* Header */
.site-header { background: var(--color-dark); padding: 20px 0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.site-title { color: #fff; font-size: 24px; font-weight: bold; }
.main-nav ul { list-style: none; display: flex; gap: 25px; flex-wrap: wrap; }
.main-nav a { color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--color-primary), var(--color-dark)); color: #fff; padding: 60px 0; text-align: center; }
.hero h1 { font-size: 36px; margin-bottom: 10px; }

/* Sections */
section { padding: 50px 0; }
section h2 { margin-bottom: 25px; font-size: 28px; color: var(--color-dark); }

/* Regions Grid */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.region-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: transform .2s; }
.region-card:hover { transform: translateY(-5px); }
.region-card-image img { width: 100%; height: 160px; object-fit: cover; display:block; }
.region-card-content { padding: 15px; }
.region-card-content h3 { color: var(--color-primary); margin-bottom: 5px; }

/* Transfers Grid */
.transfers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.transfer-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); display: block; }
.transfer-card-image img { width: 100%; height: 150px; object-fit: cover; display:block; }
.transfer-card-content { padding: 15px; }
.transfer-card-content h3 { font-size: 17px; color: var(--color-dark); margin-bottom: 10px; }
.transfer-card-meta { display: flex; justify-content: space-between; font-size: 14px; }
.transfer-price { color: var(--color-accent); font-weight: bold; }

/* Single Transfer */
.back-link { display: inline-block; margin: 20px 0; color: var(--color-primary); font-weight: bold; }
.single-transfer h1 { font-size: 28px; margin-bottom: 20px; color: var(--color-dark); }
.transfer-image img { width: 100%; border-radius: var(--radius); margin-bottom: 20px; }
.transfer-details { display: flex; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
.detail-box { background: #fff; border-radius: var(--radius); padding: 15px 25px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.detail-box strong { display: block; font-size: 13px; color: #888; margin-bottom: 5px; }
.detail-box span { font-size: 18px; font-weight: bold; color: var(--color-primary); }
.btn-book { display: inline-block; background: var(--color-accent); color: #fff; padding: 15px 35px; border-radius: var(--radius); font-weight: bold; margin: 20px 0; }
.btn-book:hover { opacity: .9; }

/* Footer */
.site-footer { background: var(--color-dark); color: #fff; text-align: center; padding: 25px 0; margin-top: 40px; }

/* ============================================================
   SLIDER
   ============================================================ */
.ht-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 480px;
    background: var(--color-dark);
}
.ht-slider-track {
    display: flex;
    height: 100%;
    transition: transform .6s ease;
}
.ht-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.ht-slide-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff;
    padding: 30px 40px;
}
.ht-slide-caption h2 { font-size: 32px; margin-bottom: 6px; }
.ht-slide-caption p  { font-size: 16px; opacity: .9; }
.ht-slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.25);
    border: none; color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s;
    z-index: 10;
}
.ht-slider-btn:hover { background: rgba(255,255,255,.5); }
.ht-prev { left: 15px; }
.ht-next { right: 15px; }
.ht-dots {
    position: absolute;
    bottom: 12px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.ht-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .2s;
}
.ht-dot.active { background: #fff; }

/* Hero slim (with slider) */
.hero-slim {
    background: var(--color-primary);
    color: #fff;
    padding: 25px 0;
    text-align: center;
}
.hero-slim h1 { font-size: 28px; margin-bottom: 5px; }
