/* ============================================
   İSTANBUL'UN FETHİ 1453 - CSS ŞABLONU
   Osmanlı Temalı Tasarım
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a1a2e;
    --bg-card: #16213e;
    --bg-darker: #0f0f23;
    --red-primary: #8B0000;
    --red-light: #DC143C;
    --gold-primary: #DAA520;
    --gold-light: #FFD700;
    --gold-dim: rgba(218, 165, 32, 0.3);
    --text-light: #F5F5DC;
    --text-muted: #b8b89a;
    --blue-accent: #0f3460;
    --border-gold: #DAA520;
    --shadow-gold: rgba(218, 165, 32, 0.2);
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-width: 1024px;
    line-height: 1.7;
    font-size: 15px;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* === HEADER === */
.site-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 50%, var(--bg-darker) 100%);
    border-bottom: 3px solid var(--gold-primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-light), var(--red-primary));
    border-bottom: 1px solid var(--gold-primary);
}

.header-top .site-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--gold-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.header-top .site-subtitle {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.9;
}

#digital-clock {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    color: var(--gold-light);
    background: rgba(0,0,0,0.4);
    padding: 6px 18px;
    border-radius: 6px;
    border: 1px solid var(--gold-dim);
    text-shadow: 0 0 8px rgba(218,165,32,0.5);
    min-width: 140px;
    text-align: center;
}

/* === WEATHER WIDGET === */
.weather-widget {
    background: linear-gradient(135deg, var(--bg-card), var(--blue-accent));
    border: 1px solid var(--gold-dim);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.weather-widget .weather-icon {
    font-size: 24px;
}

.weather-widget .weather-temp {
    font-size: 18px;
    font-weight: bold;
    color: var(--gold-light);
}

.weather-widget .weather-desc {
    color: var(--text-muted);
}

/* === NAVIGATION === */
.main-nav {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 14px 20px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--gold-light);
    background: rgba(218, 165, 32, 0.1);
    border-bottom: 3px solid var(--gold-primary);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-top: 2px solid var(--gold-primary);
    min-width: 240px;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    border-radius: 0 0 8px 8px;
    animation: dropIn 0.2s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-list > li:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 13px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(139, 0, 0, 0.3);
    color: var(--gold-light);
    padding-left: 26px;
}

.dropdown-arrow::after {
    content: ' \25BC';
    font-size: 10px;
    margin-left: 4px;
}

/* === NEWS TICKER === */
.news-ticker {
    background: linear-gradient(90deg, var(--red-primary), #a00000, var(--red-primary));
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    height: 36px;
    line-height: 36px;
    position: relative;
    z-index: 1;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 36px;
    width: 100%;
}

.ticker-label {
    background: var(--gold-primary);
    color: var(--bg-dark);
    padding: 0 16px;
    font-weight: bold;
    font-size: 13px;
    flex-shrink: 0;
    height: 36px;
    line-height: 36px;
    position: relative;
    z-index: 3;
}

.ticker-track {
    flex: 1;
    overflow: hidden;
    height: 36px;
    line-height: 36px;
    position: relative;
    z-index: 2;
}

.ticker-content {
    display: inline-block;
    animation: tickerScroll 60s linear infinite;
    font-size: 14px;
    color: var(--text-light);
    padding-left: 100%;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* === PAGE BANNER === */
.page-banner {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85), rgba(26, 26, 46, 0.9));
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/hero-feth.png') center/cover no-repeat;
    opacity: 0.15;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold-light);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    position: relative;
    z-index: 1;
}

.page-banner p {
    font-size: 16px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    margin-top: 8px;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('images/hero-feth.png') center/cover no-repeat;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.7) 50%, rgba(26,26,46,0.95) 100%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--gold-light);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* === BUTTONS === */
.btn-ottoman {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    color: var(--gold-light);
    border: 2px solid var(--gold-primary);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ottoman:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red-primary));
    box-shadow: 0 0 20px var(--shadow-gold);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--bg-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold:hover {
    box-shadow: 0 0 20px var(--shadow-gold);
    transform: translateY(-2px);
}

/* === CAROUSEL === */
.carousel-section {
    padding: 30px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--gold-dim);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--gold-dim);
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 20px;
    text-align: center;
}

.carousel-caption h3 {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: var(--gold-light);
    border: 1px solid var(--gold-dim);
    padding: 12px 18px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--red-primary);
}

.carousel-btn.prev { left: 10px; border-radius: 6px 0 0 6px; }
.carousel-btn.next { right: 10px; border-radius: 0 6px 6px 0; }

.carousel-dots {
    text-align: center;
    padding: 10px;
}

.carousel-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--gold-dim);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots span.active {
    background: var(--gold-light);
    transform: scale(1.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === CONTENT AREA === */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    gap: 30px;
    min-height: 600px;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* === CONTENT PAGE === */
.content-page h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    border-bottom: 2px solid var(--gold-dim);
    padding-bottom: 10px;
}

.content-page h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold-primary);
    margin: 25px 0 12px;
}

.content-page p {
    margin-bottom: 16px;
    text-align: justify;
    line-height: 1.9;
    color: var(--text-light);
}

.content-page .page-image {
    float: right;
    margin: 0 0 20px 25px;
    max-width: 350px;
    border: 3px solid var(--gold-dim);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* === SIDEBAR === */
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-widget h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 16px;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(218,165,32,0.1);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    font-size: 13px;
    color: var(--text-light);
}

.sidebar-widget ul li a:hover {
    color: var(--gold-light);
}

/* === VISITOR COUNTER === */
.visitor-counter {
    text-align: center;
    padding: 10px;
}

.visitor-counter .counter-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.visitor-counter .counter-number {
    font-family: 'Courier New', monospace;
    font-size: 28px;
    color: var(--gold-light);
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--gold-dim);
    letter-spacing: 3px;
}

/* === PAGE NAVIGATION BUTTONS === */
.page-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid var(--gold-dim);
}

.page-nav-buttons a,
.page-nav-buttons button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* === SCROLL TO TOP === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-light));
    color: var(--gold-light);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--shadow-gold);
}

.scroll-top-btn.visible {
    display: flex;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--gold-dim);
    transition: all 0.3s;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-gold);
    border-color: var(--gold-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--gold-light);
    font-size: 13px;
    text-align: center;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    border: 3px solid var(--gold-dim);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--gold-light);
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    color: #fff;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 18px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 8px 24px;
    border-radius: 6px;
}

/* === VIDEO SECTION === */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    box-shadow: 0 8px 25px var(--shadow-gold);
    transform: translateY(-4px);
}

.video-card .video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-card .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0.85;
    transition: all 0.3s;
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card .video-info {
    padding: 16px;
}

.video-card .video-info h3 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 16px;
    margin-bottom: 6px;
}

.video-card .video-info p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* === CONTACT FORM === */
.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--gold-dim);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 10px var(--shadow-gold);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* === SITEMAP === */
.sitemap-section {
    padding: 20px 0;
}

.sitemap-category {
    margin-bottom: 24px;
}

.sitemap-category h3 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gold-dim);
}

.sitemap-category ul {
    list-style: none;
    padding-left: 20px;
}

.sitemap-category ul li {
    padding: 4px 0;
}

.sitemap-category ul li::before {
    content: '\25B8';
    color: var(--gold-primary);
    margin-right: 8px;
}

/* === CALENDAR === */
.calendar-widget {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    padding: 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-header h4 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 15px;
}

.calendar-header button {
    background: var(--red-primary);
    color: var(--gold-light);
    border: 1px solid var(--gold-dim);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.calendar-header button:hover {
    background: var(--red-light);
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.calendar-table th {
    color: var(--gold-primary);
    font-size: 12px;
    padding: 4px;
    font-weight: 600;
}

.calendar-table td {
    padding: 4px;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.calendar-table td:hover {
    background: rgba(218, 165, 32, 0.15);
}

.calendar-table td.today {
    background: var(--red-primary);
    color: var(--gold-light);
    font-weight: bold;
    border-radius: 4px;
}

.calendar-table td.empty {
    cursor: default;
}

/* === POPUP AD === */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
}

.popup-overlay.active {
    display: block;
}

.popup-ad {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    z-index: 3001;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    overflow: hidden;
}

.popup-ad .popup-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: url('images/fatih-sultan-mehmed.png') center/cover no-repeat;
    position: relative;
}

.popup-ad .popup-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22, 33, 62, 0.88);
}

.popup-ad .popup-content > * {
    position: relative;
    z-index: 1;
}

.popup-ad h3 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 22px;
    margin-bottom: 10px;
}

.popup-ad p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: var(--red-primary);
    color: var(--gold-light);
    border: 1px solid var(--gold-dim);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.2s;
}

.popup-close:hover {
    background: var(--red-light);
    transform: scale(1.1);
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-darker));
    border-top: 3px solid var(--gold-primary);
    padding: 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold-primary);
    font-size: 13px;
    padding: 4px 12px;
    border: 1px solid var(--gold-dim);
    border-radius: 4px;
    transition: all 0.3s;
}

.footer-links a:hover {
    background: rgba(218, 165, 32, 0.1);
    color: var(--gold-light);
}

.footer-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* === OTTOMAN DIVIDER === */
.ottoman-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.ottoman-divider::before,
.ottoman-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.ottoman-divider span {
    color: var(--gold-primary);
    font-size: 18px;
}

/* === HOME CARDS === */
.home-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.home-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-gold);
    border-color: var(--gold-light);
}

.home-card .card-image {
    height: 180px;
    overflow: hidden;
}

.home-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.home-card:hover .card-image img {
    transform: scale(1.08);
}

.home-card .card-body {
    padding: 16px;
}

.home-card .card-body h3 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 16px;
    margin-bottom: 8px;
}

.home-card .card-body p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === ABOUT PAGE === */
.about-section {
    padding: 20px 0;
}

.about-section p {
    margin-bottom: 16px;
    text-align: justify;
    line-height: 1.9;
}

.about-section h3 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 22px;
    margin: 24px 0 12px;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 10px 30px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(0,0,0,0.2);
}

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

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--gold-dim);
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.text-muted { color: var(--text-muted); }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.clearfix::after { content: ''; display: table; clear: both; }

/* === RESPONSIVE MIN 1024 === */
@media (min-width: 1400px) {
    .content-wrapper {
        max-width: 1300px;
    }
}

/* === VIDEO MODAL === */
.video-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2500;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2501;
}

.video-modal-close:hover {
    color: #fff;
    transform: scale(1.2);
}

.video-modal iframe {
    width: 80%;
    height: 70vh;
    border: 2px solid var(--gold-dim);
    border-radius: 8px;
}
