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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background: #141414;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #d9a849;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d9a849;
}
nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: color .3s;
}
nav a:hover {
    color: #d9a849;
}

.hero {
    background: url("Assets/hero.png") center/cover no-repeat;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: #0f0f0f 2px 2px 8px;
}
.hero.animate {
    animation: fadeIn 1s ease-out forwards;
}

.content {
    padding: 60px 40px;
    background: #1b1b1b;
}
.content h2 {
    color: #d9a849;
    font-size: 32px;
    margin-bottom: 30px;
}
.content ul li {
    margin-bottom: 20px;
    font-size: 22px;
    opacity: 0;
    transform: translateX(-50px);
}
.content ul li.animate {
    animation: slideIn 0.8s ease-out forwards;
}
.content ul li:nth-child(1).animate { animation-delay: .3s; }
.content ul li:nth-child(2).animate { animation-delay: .6s; }
.content ul li:nth-child(3).animate { animation-delay: .9s; }

.feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.feature-figure {
    margin: 0;
    text-align: center;
}
.feature-figure img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(217,168,73,0.4);
    margin-top: -10px;
}
.feature-figure figcaption {
    margin-top: 10px;
    font-size: 18px;
    color: #d9a849;
}

.gallery-section {
    padding: 80px 40px;
    background: #0f0f0f;
    overflow: hidden;
    position: relative;
}
.gallery-title {
    color: #d9a849;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: scale(0.8);
}
.gallery-section.animate .slider {
    animation: scrollImages 20s linear infinite;
}

.slider {
  display: flex;
  gap: 30px;
  width: max-content;
  overflow: hidden;
}

.slider.scrolling {
  animation: scrollImages 30s linear infinite;
}

.slider img {
  height: 200px;
  border-radius: 10px;
  border: 2px solid #d9a849;
  box-shadow: 0 0 15px rgba(217,168,73,0.3);
}

@keyframes scrollImages {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.visitor-counter {
    color: #d9a849;
    font-size: 28px;
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
}
#counter-number {
    color: #ffd700;
    font-weight: 900;
}

.socials {
    background: #0f0f0f;
    padding: 50px 0;
    text-align: center;
}
.socials h2 {
    color: #d9a849;
    font-size: 28px;
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.social-icons img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease, opacity 0.3s;
    background-color: #fff;
    border-radius: 50%;
}
.social-icons a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

footer {
    background: #141414;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

a {
    color: #d9a849;
    text-decoration: none;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    color: #d9a849;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #1b1b1b;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(217,168,73,0.2);
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #141414;
    color: #d9a849;
    border: none;
    padding: 15px;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #222;
    color: #ccc;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 18px;
}

.faq-answer p {
    padding: 15px 0;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}


@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn  { to { opacity: 1; transform: scale(1); } }
@keyframes scrollImages {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); }
}
