html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f10;
    color: white;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 10%;
    background: #000;
    z-index: 1000;
    box-sizing: border-box;
}

/* LOGO BLOCK */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; /* IMPORTANT: prevents breaking */
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo span {
    color: #c0a060;
    font-weight: bold;
    white-space: nowrap;
}

/* MENU BLOCK */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #c0a060;
}



/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("../img/bg.JPG") center center / cover no-repeat;

    padding-top: 25px;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}


/* SECTIONS */
section {
    padding: 90px 10%;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #c0a060;
}
.about-box {
    max-width: 900px;
    margin: auto;
    background: #1a1a1d;
    padding: 30px;
    border-radius: 10px;
    line-height: 1.8;
    color: #ccc;
}

.about-box p {
    margin-bottom: 15px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 6px;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* CONTACT */
.contact-box {
    max-width: 700px;
    margin: auto;
    background: #1a1a1d;
    padding: 25px;
    border-radius: 10px;
}

.contact-box a {
    color: #c0a060;
    text-decoration: none;
}

/* MAP */
iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 10px;
}


/* FOOTER */

footer {
    background: #000;
    padding: 40px 10%;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-left h3 {
    color: #c0a060;
    margin-bottom: 8px;
}

.footer-left p {
    color: #aaa;
}

.footer-right {
    text-align: right;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c0a060;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: #c0a060;
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    color: #888;
    font-size: 14px;
}

/* Mobile */

@media (max-width:768px){

	.footer-container{
		flex-direction:column;
		text-align:center;
	}

	.footer-right{
		text-align:center;
	}

	.social-links{
		justify-content:center;
	}

}
/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
}