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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* Hero Section */
.hero {
    height: 18vh;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	margin-bottom: 1rem;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    /* margin-bottom: 1rem; */
}

.hero p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation */
.back-to-home {
    position: fixed;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    z-index: 10;
    transition: background-color 0.3s;
}

.back-to-home:hover {
    background: #1d4ed8;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.section {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.section:nth-child(even) {
    background: #111;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-image {
    flex: 1;
    cursor: pointer;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

.section-image img:hover {
    transform: scale(1.05);
}

.section-text {
    flex: 1;
    padding: 0 1rem;
}

.section-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.section-text h2:hover {
    color: #60a5fa;
}

.section-text p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background: #1d4ed8;
}

/* Detailed Pages */
.page-content {
    padding-top: 4rem;
}

.page-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.page-content section {
    margin-bottom: 3rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.list {
    list-style-position: inside;
    margin-left: 1.5rem;
}

/* Footer */
footer {
    background: #111;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

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

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

    .section-content {
        flex-direction: column;
    }

    .section-content.reverse {
        flex-direction: column;
    }
}

/* Full width images */
.full-width {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}
