/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

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

/* Mobile Header */
.mobile-header {
    display: block;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

.mobile-tagline {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
}

.mobile-tagline h2 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Times New Roman', serif;
}

.mobile-nav .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: Georgia, serif;
}

.logo span {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
    display: block;
}

.logo {
    text-decoration: none;
    color: white;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-menu-content.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-section h3 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.menu-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.menu-section a {
    color: #555;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.menu-section a:hover {
    color: #2c5530;
}

/* Desktop Header */
.desktop-header {
    display: none;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

.header-tagline {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    text-align: center;
}

.header-tagline h2 {
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
}

.main-nav .nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-section .logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.logo-section .logo span {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.nav-links > a,
.dropdown > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-family: Georgia, serif;
}

.nav-links > a:hover,
.dropdown > a:hover {
    color: #d4d700;
}

/* Search Section */
.search-container {
    display: flex;
    background: white;
    border-radius: 25px;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 20px;
    outline: none;
    color: #333;
    font-family: Georgia, serif;
}

.search-btn {
    background: #2c5530;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #1a3d1f;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: #333;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    font-family: Georgia, serif;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #2c5530;
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a4d4d 0%, #2c5530 50%, #4a7c59 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px 100px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: Georgia, serif;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-family: Georgia, serif;
}

.btn-primary {
    background: #d4d700;
    color: #1a3d1f;
    box-shadow: 0 4px 15px rgba(212, 215, 0, 0.3);
}

