:root {
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-bg-dark: #222222;
    --color-bg-footer: #2a2a2a;
    --color-accent: #38bdf8;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    line-height: 1.5;
}

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

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

nav a:hover,
nav a.active {
    color: white;
}

.separator {
    color: #666;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Page Header (for subpages) */
.page-header {
    background-color: #f4f4f4;
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Content Section */
.content {
    padding: 60px 0;
    background-color: white;
}

.content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: black;
}

.content p {
    font-size: 1.1rem;
    max-width: 800px;
    color: #333;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

/* Placeholders for demo */
.placeholder-1 {
    background-color: #a8d0e6;
}

.placeholder-2 {
    background-color: #f8b195;
}

.placeholder-3 {
    background-color: #f67280;
}

.placeholder-4 {
    background-color: #c06c84;
}

.placeholder-5 {
    background-color: #6c5b7b;
}

.placeholder-6 {
    background-color: #355c7d;
}

.gallery-caption {
    padding: 15px;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #eee;
}

/* Video Styles */
.video-placeholder {
    height: 200px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 5px;
    color: white;
    font-weight: 500;
}

.legal-links {
    margin-top: 15px;
}

.legal-links a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #38bdf8;
}

.center-column {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.right-column {
    text-align: left;
}

.email {
    font-weight: 600;
    color: white;
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #666;
    font-family: serif;
    font-style: italic;
}

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

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

    .center-column {
        border: none;
        padding: 20px 0;
    }
}