/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;600&display=swap');

/* --- Variables (Ultra Professional Palette) --- */
:root {
    --primary-color: #d97706; /* Rich Amber/Spicy Orange */
    --primary-dark: #b45309;
    --bg-light: #fdfbf7; /* Warm off-white */
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 70px; /* Space for sticky nav */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* --- Sticky Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 50%; /* Keeps the logo neat */
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* --- Hero Section with Background Logo --- */
.hero-section {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* This uses your logo as a faint, professional background pattern */
    background-image: url('https://sylhetbites.pages.dev/img/logo-512.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.85); /* Dark overlay to make text pop */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Main Content --- */
.about-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-section {
    text-align: center;
    margin-bottom: 60px;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text {
    text-align: left;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.story-text p {
    margin-bottom: 20px;
}

/* --- Values Cards --- */
.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.powered-by {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.debate-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.debate-link:hover {
    opacity: 0.8;
}

.debate-logo {
    height: 30px;
    width: auto;
    border-radius: 4px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        display: none; /* In a real app, you'd add a hamburger menu here */
    }
    
    .story-text {
        text-align: justify;
    }
}

