/* =====================
NAVA CASINO 2025 STYLE (YELLOW-WHITE THEME)
===================== */

:root {
--bg-dark: #141517;
--bg-light: #1c1d20;
--accent-yellow: #ffff73;
--text: #f7f7f7;
--text-muted: #bfbfbf;
--radius: 10px;
--transition: 0.3s ease;
}

/* ========== GENEL ========== */
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-color: var(--bg-dark);
color: var(--text);
overflow-x: hidden;
scroll-behavior: smooth;
}

h1, h2, h3, h4 {
letter-spacing: 0.5px;
}

/* ========== HEADER ========== */
.header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 10px;
background-color: var(--bg-light);
border-bottom: 1px solid #242527;
gap: 6px;
}

.logo img {
max-width: 200px;
max-height: 70px;
object-fit: contain;
filter: brightness(1.1);
}

/* ========== HERO (CINEMATIC VERSION) ========== */
.hero {
position: relative;
display: flex;
align-items: center;
justify-content: center;
min-height: 550px;
overflow: hidden;
background-color: var(--bg-dark);
}

.hero-bg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
transform: scale(1.1);
filter: brightness(0.5) contrast(1.1);
animation: heroZoom 22s ease-in-out infinite alternate;
z-index: 0;
}

@keyframes heroZoom {
0% {
transform: scale(1.1) translateY(0);
}
100% {
transform: scale(1.25) translateY(-20px);
}
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
115deg,
rgba(0, 0, 0, 0.85) 0%,
rgba(20, 21, 23, 0.7) 45%,
rgba(255, 255, 115, 0.1) 100%
);
z-index: 1;
}

/* İçerik */
.hero-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 700px;
padding: 30px;
animation: fadeInHero 1.4s ease-out forwards;
}

@keyframes fadeInHero {
0% {
opacity: 0;
transform: translateY(40px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

.hero-content h1 {
font-size: 2.8rem;
font-weight: 700;
color: var(--text);
margin-bottom: 25px;
text-shadow: 0 0 12px rgba(255, 255, 115, 0.1);
}

.hero-content p {
font-size: 1.05rem;
color: var(--text-muted);
max-width: 520px;
margin: 0 auto 30px auto;
line-height: 1.6;
}

/* ========== BUTONLAR ========== */
.buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 18px;
flex-wrap: wrap;
}

.btn {
text-decoration: none;
color: #000;
padding: 14px 34px;
border-radius: var(--radius);
font-weight: 600;
transition: all 0.35s ease;
text-align: center;
min-width: 150px;
letter-spacing: 0.3px;
border: 1px solid transparent;
}

/* Sarı buton (Primary) */
.btn.primary {
background: linear-gradient(90deg, #ffff73, #f7f7b5);
box-shadow: 0 0 20px rgba(255, 255, 115, 0.3);
}
.btn.primary:hover {
background: linear-gradient(90deg, #f7f7b5, #ffff73);
box-shadow: 0 0 35px rgba(255, 255, 115, 0.6);
transform: translateY(-3px) scale(1.03);
}

/* Beyaz buton (Secondary) */
.btn.secondary {
background: linear-gradient(90deg, #f7f7f7, #e5e5e5);
color: #111;
box-shadow: 0 0 20px rgba(247, 247, 247, 0.25);
}
.btn.secondary:hover {
background: linear-gradient(90deg, #e5e5e5, #f7f7f7);
box-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
transform: translateY(-3px) scale(1.03);
}

/* ========== ANA İÇERİK ========== */
.content {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
line-height: 1.7;
}

.content article p {
color: var(--text-muted);
}

/* Görseller */
.bottom-image {
display: block;
width: 100%;
height: auto;
margin: 30px auto;
border-radius: var(--radius);
object-fit: cover;
}

@media (max-width: 600px) {
.bottom-image {
width: 100%;
height: auto;
max-height: 250px;
object-fit: contain;
border-radius: var(--radius);
}
}

/* CTA */
.cta {
text-align: center;
margin: 30px 0;
}

.btn.large {
font-size: 1rem;
padding: 12px 26px;
background-color: var(--accent-yellow);
color: #000;
border-radius: 8px;
max-width: 400px;
width: 85%;
display: inline-block;
white-space: normal;
line-height: 1.4;
transition: var(--transition);
}
.btn.large:hover {
background-color: #f7f7b5;
box-shadow: 0 0 20px rgba(255, 255, 115, 0.4);
}

/* ========== FOOTER ========== */
.footer {
background-color: var(--bg-light);
padding: 30px 15px;
text-align: center;
color: var(--text-muted);
border-top: 1px solid #242527;
}

.footer .footer-logo img {
max-width: 160px;
max-height: 60px;
object-fit: contain;
margin-bottom: 10px;
filter: brightness(1.2);
}

.footer .social-links {
margin: 10px 0;
}

.footer .social-links a {
color: var(--text-muted);
margin: 0 8px;
transition: var(--transition);
font-size: 1.1rem;
}

.footer .social-links a:hover {
color: var(--accent-yellow);
}

.footer p {
font-size: 0.9rem;
margin: 8px 0 0;
}

/* ========== ANİMASYONLAR ========== */
.fade-in {
opacity: 0;
transform: translateY(20px);
animation: fadeIn 1.2s forwards;
}

@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
.hero {
min-height: 480px;
}

.hero-content h1 {
font-size: 2.2rem;
}

.btn {
padding: 12px 28px;
}
}

@media (max-width: 768px) {
.hero-content h1 {
font-size: 2rem;
}

.hero-content p {
font-size: 0.95rem;
}

.btn {
min-width: 130px;
padding: 12px 24px;
font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.hero {
min-height: 380px;
}

.hero-content {
padding: 20px;
}

.hero-content h1 {
font-size: 1.6rem;
}

.hero-content p {
font-size: 0.9rem;
}

.buttons {
flex-direction: row;
gap: 10px;
}

.btn {
flex: 1;
min-width: 120px;
padding: 10px 0;
}

.cta .btn.large {
font-size: 0.85rem;
padding: 10px 0;
width: 80%;
max-width: 280px;
white-space: normal;
}
}
