/* poppins-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2');
}
/* poppins-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
/* poppins-italic - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-italic.woff2') format('woff2');
}
/* poppins-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}
/* poppins-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}
/* poppins-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
}
/* poppins-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
}
/* poppins-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/poppins-v24-latin-900.woff2') format('woff2');
}

:root {
    --gold: #b8860b;
    --gold-light: #A58A55;
    --dark-green: #2d4a3e;
    --light-bg: #f8f6f3;
    --text-dark: #333333;
    --text-light: #555555;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--light-bg);
}

h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('../images/269690772_208838881444482_1061165462629365447_n.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.notice-section {
    margin-bottom: 40px;
}

.notice-section p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.notice-section p:first-child {
    color: var(--text-dark);
}

/* Highlight Section */
.highlight-section {
    margin-bottom: 40px;
}

.highlight-section ul {
    list-style: none;
}

.highlight-section li {
    padding: 0 0 0 25px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.highlight-section li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.cta-section .cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--gold-light);
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 60px;
    margin-left: calc(-40vw + 50%);
    margin-right: calc(-40vw + 50%);
    padding: 0 5%;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery img:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 60px 20px;
    border-bottom: 8px solid var(--gold);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h2 {
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Footer */
.footer {
    background: var(--gold);
    color: white;
    text-align: center;
    padding: 25px 20px;
}

.footer p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer a {
    color: var(--gold-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
