:root {
    --primary-color: #c5a059; /* Gold */
    --secondary-color: #1a252f; /* Dark Blue */
    --text-color: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #121212;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.text-white {
    color: var(--text-light) !important;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-style: italic;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--secondary-color);
    position: fixed;
    padding: 15px 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    font-weight: bold;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1548013146-72479768bada?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #b08d4a;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-dark {
    background-color: var(--secondary-color);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-item .label {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
}

/* Features Gallery */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
}

/* Turkey Showcase */
.turkey-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-item img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.showcase-item img:hover {
    transform: scale(1.02);
}

.showcase-info {
    width: 50%;
}

.showcase-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.showcase-info p {
    font-size: 1.1rem;
    color: #555;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.socials {
    margin: 20px 0;
}

.socials a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        width: 70%;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .showcase-item, .showcase-item.reverse {
        flex-direction: column;
    }

    .showcase-item img, .showcase-info {
        width: 100%;
    }
}
