/* Base Styles */
:root {
    --primary-color: #556b2f;
    --secondary-color: #d2b47c;
    --light-color: #d3d3d3;
    --accent-color: #006167;
    --text-color: #333;
    --white: #ffffff;
    --grid-gap: 2rem;
    --card-radius: 8px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Typography */
@font-face {
    font-family: 'Rockwell';
    src: local('Rockwell Regular'),
         local('Rockwell');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Minion Pro';
    src: local('Minion Pro Regular'),
         local('MinionPro-Regular');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Minion Pro', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2 {
    font-family: 'Rockwell', Georgia, serif;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h3, h4, .nav-links a, .footer-links a, button {
    font-family: 'Lucida Sans', 'Segoe UI', Arial, sans-serif;
    font-weight: normal;
    line-height: 1.3;
}

h3, h4 {
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

/* Navigation */
.main-nav {
    background-color: var(--primary-color);
    padding: 1rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 10px;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Search */
.search-container {
    position: relative;
    display: none;
}

.search-container.active {
    display: block;
    width: 100%;
}

.search-input {
    background-color: var(--light-color);
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 20px;
    width: 100%;
    font-size: 1rem;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    z-index: 1000;
    display: none;
}

.search-result {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.search-result:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(85, 107, 47, 0.8), rgba(85, 107, 47, 0.8)), url('../images/header_back.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 6rem 1rem;
    margin-bottom: 2rem;
}

/* Note: All pages have inline hero backgrounds that override this default */

.hero h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.hero p {
    color: var(--light-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* Content Sections */
section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.activity-content {
    background-color: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    color: var(--primary-color);
}

/* Tours */
.tour-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tour-card {
    background-color: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-card h4 {
    color: var(--primary-color);
}

/* Features */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 30px;
}

/* Equipment List */
.equipment-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.equipment-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.equipment-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.equipment-list li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Lucida Sans', 'Segoe UI', Arial, sans-serif;
    color: var(--accent-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--light-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Lucida Sans', 'Segoe UI', Arial, sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #c3a46c;
}

.btn-full {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

.footer-logo h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--light-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        padding: 1rem 2rem;
    }

    .nav-container {
        flex: 1;
        justify-content: flex-end;
    }

    .nav-links {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 1.5rem;
    }

    .search-container {
        display: block;
        width: 200px;
        margin-right: 1rem;
    }

    .mobile-menu-btn {
        display: none;
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero {
        padding: 8rem 1rem;
    }

    .activity-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
} 