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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #FFA500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 20, 40, 0.7)
    ), url('../images/bobur-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #fff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #ffd700;
    backdrop-filter: blur(5px);
    color: #fff;
}

.hero-quote p {
    margin-bottom: 1rem;
}

.hero-quote cite {
    color: #FFA500;
    font-style: italic;
    display: block;
    margin-top: 1rem;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    min-height: calc(100vh - 60px);
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

/* Author Page */
.author-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.author-image {
    flex: 0 0 400px;
}

.author-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.author-info {
    flex: 1;
}

.author-dates {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.author-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.submit-btn {
    background: #FFA500;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #FF8C00;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-quote {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .author-content,
    .contact-content {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .author-image {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
}
