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

:root {
    --primary-color: #e7a480;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #ddd;
    --header-font: 'Lato', sans-serif;
    --body-font: 'Gentium Basic', serif;
}

body {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    min-height: 80px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.site-title {
    font-family: 'Questrial', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

.iframe-container {
  text-align:center;
  max-width: 100%;
}

.iframe-container iframe {
  display: block;
  margin: 0 auto;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    font-family: 'Muli', sans-serif;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-color);
    position: absolute;
    right: 2rem;
    top: 1rem;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1 {
    font-family: var(--header-font);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

h2 {
    font-family: var(--header-font);
    font-size: 2rem;
    font-weight: 300;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

h3 {
    font-family: var(--header-font);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    
}

/* Content Section */
.content-section {
    margin: 3rem 0;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item p {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.9rem;
}

.gallery-item.appropriate img {
    border: 3px solid #28a745;
}

.gallery-item.inappropriate img {
    border: 3px solid #dc3545;
}

/* Button Styles */
.button {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #C65D25;
    text-decoration: none;
}

/* Card Styles */
.card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Q&A Styles */
.qa-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.qa-item iframe {
  width: 80%;
  height: 100%;
}


.qa-question {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.qa-answer {
    margin-top: 0.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1rem;
}

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

/* Info Box */
.info-box {
    background-color: #ebf0ec;
    border-left: 4px solid #7b9f7f;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.warning-box {
    background-color: #ebf0ec;
    border-left: 4px solid #7b9f7f;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .header-content {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        width: 100%;
    }

    nav.active {
        max-height: 500px;
        transition: max-height 0.3s ease-in;
    }

    nav a {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    nav a:last-child {
        border-bottom: none;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    main {
        padding: 2rem 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
