/*
Theme Name:    Radyan Starter
Theme URI:     https://example.com/
Author:        Tolga
Author URI:    https://example.com/
Description:   Boğaziçi Lokantası Özel Tasarım Teması
Version:       1.0.0
License:       GNU General Public License v2 or later
License URI:   http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:   radyan-starter
*/

/* --- GENEL SIFIRLAMA VE DEĞİŞKENLER --- */
:root {
    --gold-primary: #b5985a;
    --gold-hover: #967c42;
    --dark-bg: #1c1c1c;
    --body-bg: #f4f3ed;
    --card-bg: #ffffff;
    --text-color: #2b2b2b;
    --text-muted: #666666;
    --border-color: #eae7e1;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --blue-icon: #2f73b8;
}

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

body {
    background-color: var(--body-bg);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.custom-container,
.custom-sections-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* --- HEADER ALANI --- */
.site-header-area {
    background: #ffffff;
    border-bottom: 1px solid #e3dfd7;
    padding: 15px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-wrapper a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    font-family: Georgia, serif;
    line-height: 1.1;
}

.brand-symbol {
    color: #b5985a;
    font-size: 18px;
    display: inline-block;
    line-height: 0.5;
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 2.5px;
    color: #b5985a;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-menu-trigger {
    background-color: #2f73b8;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(47, 115, 184, 0.3);
}

.btn-menu-trigger:hover {
    background-color: #245b94;
    transform: translateY(-1px);
}

/* --- HERO ALANI --- */
.hero-section {
    position: relative;
    background: #111111 url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 120px 0;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* --- DUYURU SECTION --- */
.duyuru-section {
    padding: 60px 0;
}

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

.section-subtitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
    display: block;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-bg);
    margin: 5px 0 15px 0;
}

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

.duyuru-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.duyuru-card h3 a {
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 18px;
}

/* --- REZERVASYON BANNER --- */
.ccta-banner-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin-bottom: 40px;
}

.ccta-banner-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ccta-text h3 {
    font-size: 22px;
    color: var(--dark-bg);
}

.ccta-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --- KARTLAR & GENEL KUTU YAPISI --- */
.custom-card-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e7e3dc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* YOUTUBE KARTI */
.youtube-card {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.youtube-icon-avatar {
    font-size: 40px;
    color: #ff0000;
}

.card-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.card-title {
    font-size: 20px;
    margin: 3px 0 8px 0;
}

.card-desc {
    color: var(--text-muted);
    font-size: 14px;
}

.btn-youtube {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* --- İLETİŞİM GRID --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon.icon-blue {
    width: 48px;
    height: 48px;
    background-color: var(--blue-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8c9297;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.info-value {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
}

.info-value-text {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin: 0;
    line-height: 1.4;
}

/* --- GOOGLE MAPS EMBED --- */
.homepage-map-wrapper {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #e7e3dc;
    background: #ffffff;
}

.homepage-map-wrapper iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* --- FOOTER ALANI --- */
.classic-site-footer {
    background-color: #f5f4f0;
    border-top: 1px solid #e3dfd7;
    padding: 50px 0;
    color: #444444;
    font-size: 13.5px;
    line-height: 1.6;
    width: 100%;
    clear: both;
}

.footer-custom-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.classic-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
}

.footer-col {
    flex: 1;
    box-sizing: border-box;
}

.footer-col-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.copyright-text {
    color: #777777;
    font-size: 13px;
    margin: 0;
}

.footer-line {
    margin: 0 0 4px 0;
    color: #555555;
    font-size: 13.5px;
}

.footer-line strong {
    color: #222222;
    font-weight: 700;
}

.footer-line a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-space-top {
    margin-top: 12px !important;
}

.hours-title {
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 8px 0;
}

.classic-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 15px;
    align-items: center;
}

.classic-social-icons a {
    color: #555555;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.classic-social-icons a:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* --- RESPONSIVE / MOBİL UYUM --- */
@media (max-width: 850px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .ccta-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .youtube-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    .brand-main {
        font-size: 18px;
    }
    .btn-menu-trigger {
        padding: 10px 18px;
        font-size: 13px;
    }
    .classic-footer-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-col-left {
        align-items: center;
    }
    .classic-social-icons {
        justify-content: center;
    }
}