/* Základné nastavenia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* =========================
   HERO FOTO – MUSÍ BYŤ MIMO @media (aby platila vždy)
   ========================= */
.hero-img{
  background-image: url("https://i.imgur.com/FoMG7uw.jpeg") !important;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-img span{
    display: none;
}

/* ANIMATED BACKGROUND */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 100%);
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #8b6914;
    top: 20%;
    left: 10%;
    animation: float-blob 8s ease-in-out infinite;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #a0791a;
    top: 50%;
    right: 15%;
    animation: float-blob 10s ease-in-out infinite 1s;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: #6b5310;
    bottom: 10%;
    left: 30%;
    animation: float-blob 9s ease-in-out infinite 2s;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -50px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(50px, 30px); }
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(139, 105, 20, 0.1);
    border-bottom: 3px solid #8b6914;
    backdrop-filter: blur(10px);
    width: 100%;
    overflow: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em 2em;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.6em;
    font-weight: bold;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.8em;
    animation: pulse 2s infinite;
}

.logo-text {
    background: linear-gradient(90deg, #8b6914 0%, #a0791a 50%, #8b6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: #8b6914;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5em;
    justify-content: flex-end;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.5em 0;
    white-space: nowrap;
    font-size: 1em;
}

nav ul li a:hover {
    color: #8b6914;
    text-shadow: 0 0 15px rgba(139, 105, 20, 0.6);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b6914, #a0791a);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav ul li a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(139, 105, 20, 0.5);
}

/* MAIN */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3em 2em;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* SECTION */
.section {
    background: linear-gradient(135deg, rgba(30, 26, 22, 0.8) 0%, rgba(42, 36, 32, 0.8) 100%);
    border-radius: 1.5em;
    margin-bottom: 3em;
    box-shadow: 0 15px 50px rgba(139, 105, 20, 0.1);
    padding: 3em 2.5em;
    border-left: 6px solid #8b6914;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(100px);
    position: relative;
    backdrop-filter: blur(5px);
    width: 100%;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b6914, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section.in-view::before {
    opacity: 1;
}

.section:hover {
    box-shadow: 0 25px 70px rgba(139, 105, 20, 0.2);
    transform: translateY(-8px);
}

.section h2 {
    color: #8b6914;
    font-size: 2.5em;
    margin-bottom: 1.5em;
    text-shadow: 0 0 20px rgba(139, 105, 20, 0.3);
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b6914, transparent);
    border-radius: 2px;
}

/* GLASSMORPHISM */
.glass-effect {
    background: rgba(139, 105, 20, 0.08) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 105, 20, 0.15) !important;
}

/* HERO SECTION */
/* HERO – font ako na obrázku (serif) */
.hero .animated-title,
.hero .hero-subtitle{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
}
.hero .animated-title{
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero .hero-subtitle{
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero {
    display: flex;
    align-items: center;
    gap: 3em;
    background: linear-gradient(135deg, rgba(42, 36, 16, 0.9) 0%, rgba(31, 26, 16, 0.9) 100%);
    min-height: 550px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.soundwave-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}

.soundwave {
    width: 8px;
    height: 80%;
    background: linear-gradient(180deg, #8b6914, transparent);
    border-radius: 10px;
    animation: soundwave 0.8s ease-in-out infinite;
}

.soundwave:nth-child(1) { animation-delay: 0s; }
.soundwave:nth-child(2) { animation-delay: 0.1s; }
.soundwave:nth-child(3) { animation-delay: 0.2s; }
.soundwave:nth-child(4) { animation-delay: 0.1s; }
.soundwave:nth-child(5) { animation-delay: 0s; }

@keyframes soundwave {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

.hero-content {
    flex: 1;
    z-index: 2;
    min-width: 0;
}

.animated-title {
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 0.5em;
    background: linear-gradient(90deg, #8b6914 0%, #a0791a 50%, #8b6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(139, 105, 20, 0.3); }
    50% { text-shadow: 0 0 40px rgba(139, 105, 20, 0.6); }
}

.hero-subtitle {
    font-size: 1.15em;
    color: #d0d0d0;
    margin-bottom: 2em;
    line-height: 1.8;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8em;
    padding: 1.1em 2.8em;
    background: linear-gradient(90deg, #6b5310 0%, #7a5c14 100%);
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.3);
    border: 2px solid #8b6914;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(139, 105, 20, 0.5);
    background: linear-gradient(90deg, #7a5c14 0%, #8b6914 100%);
}

.button-icon {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-image{
  width: 40%;
}

.image-placeholder.hero-img{
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.5em;
  border: 2px solid #8b6914;
  box-shadow: 0 20px 60px rgba(139, 105, 20, 0.2);
  overflow: hidden;

  background-image: url("https://i.imgur.com/FoMG7uw.jpeg");
  background-size: cover;
  background-position: center top; /* uprav podľa potreby */
  background-repeat: no-repeat;
}
.hero-img{
  background-image: url("https://i.imgur.com/FoMG7uw.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img span{
  display: none;
}
.image-placeholder.hero-img span{
  display: none;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(139, 105, 20, 0.3);
}

/* ABOUT SECTION */
.about-container {
    display: flex;
    gap: 3em;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: #d0d0d0;
    font-size: 1.1em;
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.features-list li {
    color: #8b6914;
    font-weight: 500;
    font-size: 1.05em;
}

/* GALLERY - OPRAVENÉ */
.gallery {
    display: flex;
    gap: 1.5em;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1em;
    margin-bottom: 2em;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #8b6914 rgba(139, 105, 20, 0.1);
}

.gallery::-webkit-scrollbar {
    height: 12px;
}

.gallery::-webkit-scrollbar-track {
    background: rgba(139, 105, 20, 0.1);
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    background: #8b6914;
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb:hover {
    background: #a0791a;
}

.gallery-item {
    overflow: hidden;
    border-radius: 1.2em;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    min-width: 280px;
    width: 280px;
    height: 280px;
}

.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0791a;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 1.2em;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .gallery-item {
        min-width: 260px;
        width: 260px;
        height: 260px;
    }
}

/* GALLERY BUTTON */
.gallery-button-container {
    text-align: center;
    margin-top: 2.5em;
    padding-top: 2em;
    border-top: 2px solid rgba(139, 105, 20, 0.2);
    width: 100%;
}

.gallery-button-container .cta-button {
    padding: 0.9em 2em;
    font-size: 1em;
}
/* Video badge v galérii – farba a vzhľad */
.video-badge{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ZMEN FARBU TU: */
  color: #ffffff; /* napr. biela */

  font-size: 4.2rem;
  text-shadow: 0 0 22px rgba(0,0,0,0.9);

  /* jemný overlay aby to bolo čitateľné */
  background: rgba(0,0,0,0.25);
}

/* voliteľné: kruh pod ikonou */
.video-badge::before{
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 999px;

  /* ZMEN FARBU KRUHU TU: */
  background: rgba(139, 105, 20, 0.65); /* zlatá v tvojom štýle */

  box-shadow: 0 0 30px rgba(139,105,20,0.45);
}

/* nech je ikonka nad kruhom */
.video-badge{
  z-index: 2;
}
.video-badge{
  pointer-events: none; /* aby sa klikalo na celé thumbnail */
}
.video-badge{
  position: absolute;
}
.video-badge > * { position: relative; }

/* MODAL - SCROLLOVATEĽNÝ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal.active {
    display: flex;
}

.modal-image {
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1em;
    box-shadow: 0 0 50px rgba(139, 105, 20, 0.5);
    animation: zoomIn 0.3s;
    margin: auto;
}

@media (max-width: 768px) {
    .modal {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-image{
  object-fit: cover;      /* <- toto robí “pekne orezané” */
  display: block;
}

/* video: nech vyplní box */
.modal-video{
  border: 0;
}
}

@media (max-width: 600px) {
    .modal-image {
        max-width: 90%;
        max-height: 60%;
        margin: 30px auto;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #8b6914;
    font-size: 3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2003;
}

.modal-close:hover {
    color: #a0791a;
    transform: scale(1.2);
}

	/* Väčšie klikateľné šípky v modale */
.modal-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;              /* bolo cca 80 */
  height: 36px;             /* bolo cca 80 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 105, 20, 0.35);
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  font-size: 1.6em;         /* väčší symbol */
  color: #8b6914;
  z-index: 2002;
  border: 2px solid rgba(139, 105, 20, 0.55);
}

/* ešte väčší "hitbox" (klikacia plocha), bez zmeny vizuálu */
.modal-prev-btn,
.modal-next-btn{
  padding: 5px;            /* zväčší klikateľnú plochu */
}

.modal-prev-btn{ left: 10px; }
.modal-next-btn{ right: 10px; }

.modal-nav:hover{
  background: rgba(139, 105, 20, 0.65);
  color: #a0791a;
  transform: translateY(-50%) scale(1.08);
}

.modal-prev-btn {
    left: 20px;
}

.modal-next-btn {
    right: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SERVICES */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
    width: 100%;
}

.service-card {
    padding: 2.5em;
    border-radius: 1.2em;
    border: 2px solid #8b6914;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08), rgba(160, 121, 26, 0.06));
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.2);
    border-color: #a0791a;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.12), rgba(160, 121, 26, 0.1));
}

.service-icon {
    font-size: 3.5em;
    margin-bottom: 1em;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.service-card h3 {
    color: #8b6914;
    margin-bottom: 1em;
    font-size: 1.4em;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.95em;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* REVIEWS SECTION */
.reviews-section {
    background: linear-gradient(135deg, rgba(30, 26, 22, 0.8) 0%, rgba(42, 36, 32, 0.8) 100%);
    width: 100%;
}

.reviews-intro {
    text-align: center;
    margin-bottom: 2.5em;
}

.reviews-intro p {
    color: #d0d0d0;
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

/* REVIEWS SCROLL CONTAINER */
.reviews-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 3em;
    width: 100%;
}

.reviews-scroll-container {
    display: flex;
    gap: 1.5em;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.2em 0;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #8b6914 rgba(139, 105, 20, 0.1);
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

@media (max-width: 768px) {
    .reviews-scroll-container {
        gap: 1.2em;
        padding: 1.5em 0;
    }
}

@media (max-width: 600px) {
    .reviews-scroll-container {
        gap: 1em;
        padding: 1.8em 0;
    }
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: rgba(139, 105, 20, 0.1);
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background: #8b6914;
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #a0791a;
}

/* REVIEW CARD */
.review-card-scroll {
    min-width: 420px;
    max-width: 420px;
    padding: 2.2em;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08), rgba(160, 121, 26, 0.06));
    border: 2px solid rgba(139, 105, 20, 0.2);
    border-radius: 1.2em;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    height: 550px;
    overflow-y: auto;
    word-wrap: break-word;
    word-break: break-word;
}

.review-text {
    color: #e0e0e0;
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 1.2em;
    font-style: normal;
    font-weight: 400;
    word-break: break-word;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
    text-align: justify;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    margin-top: auto;
    padding-top: 1em;
    border-top: 1px solid rgba(139, 105, 20, 0.2);
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .review-card-scroll {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        height: auto;
        min-height: 420px;
        margin-bottom: 1em;
    }

    .review-text {
        font-size: 0.9em;
        line-height: 1.65;
        text-align: left;
    }
}

.review-card-scroll:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.2);
    border-color: #8b6914;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.12), rgba(160, 121, 26, 0.1));
}

/* SCROLLBAR PRE RECENZIE */
.review-card-scroll::-webkit-scrollbar {
    width: 12px;
}

.review-card-scroll::-webkit-scrollbar-track {
    background: rgba(139, 105, 20, 0.1);
    border-radius: 6px;
}

.review-card-scroll::-webkit-scrollbar-thumb {
    background: #8b6914;
    border-radius: 6px;
}

.review-card-scroll::-webkit-scrollbar-thumb:hover {
    background: #a0791a;
}

/* AUTHOR */
.review-author-name {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.4em;
    overflow-wrap: break-word;
    hyphens: auto;
}

.review-date {
    color: #a0791a;
    font-size: 0.85em;
    margin-bottom: 1.2em;
    font-weight: 500;
}

.review-stars {
    color: #ffd700;
    font-size: 1.1em;
    letter-spacing: 2px;
    white-space: nowrap;
}

.review-event {
    display: inline-block;
    color: #ffd700;
    background: rgba(139, 105, 20, 0.25);
    padding: 0.6em 1.2em;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: 600;
    border: 2px solid rgba(160, 121, 26, 0.5);
    white-space: nowrap;
}

/* SCROLL TLAČIDLÁ */
.reviews-scroll-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(139, 105, 20, 0.3);
    border: 2px solid #8b6914;
    border-radius: 50%;
    color: #8b6914;
    font-size: 1.8em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-hint-mobile {
    display: none;
    text-align: center;
    color: #ffd700;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 1em;
    animation: fadeInOut 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .scroll-hint-mobile {
        display: block;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
    .reviews-scroll-btn { display: none; }
    .reviews-scroll-container { scroll-snap-type: x mandatory; }
    .review-card-scroll { scroll-snap-align: start; }
}

.reviews-scroll-btn:hover {
    background: rgba(139, 105, 20, 0.6);
    color: #a0791a;
    transform: scale(1.1);
}

.reviews-scroll-left {
    order: -1;
}

/* FAQ SECTION */
.faq-section {
    background: linear-gradient(135deg, rgba(30, 26, 22, 0.8) 0%, rgba(42, 36, 32, 0.8) 100%);
    width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    width: 100%;
}

.faq-item {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08), rgba(160, 121, 26, 0.06));
    border: 2px solid rgba(139, 105, 20, 0.2);
    border-radius: 1em;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: #8b6914;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.12), rgba(160, 121, 26, 0.1));
}

.faq-question {
    padding: 1.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #d0d0d0;
    font-weight: 500;
}

.faq-question:hover {
    background: rgba(139, 105, 20, 0.08);
    color: #8b6914;
}

.faq-toggle {
    color: #8b6914;
    font-size: 1.5em;
    font-weight: bold;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 1em;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5em;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 1.5em 1.5em 1.5em;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, rgba(30, 26, 22, 0.8) 0%, rgba(42, 36, 32, 0.8) 100%);
    margin-bottom: 0;
    border-radius: 0;
    width: 100%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.contact-item {
    padding: 2em;
    border-radius: 1em;
    border: 2px solid #8b6914;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08), rgba(160, 121, 26, 0.06));
}

.contact-label {
    color: #8b6914;
    font-weight: bold;
    font-size: 1.15em;
    display: block;
    margin-bottom: 0.8em;
}

.contact-info a {
    color: #f5d547;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 1.05em;
}

.contact-info a:hover {
    color: #a0791a;
    text-shadow: 0 0 10px rgba(139, 105, 20, 0.5);
}

.contact-info p {
    color: #d0d0d0;
}

.social-links {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 0.7em 1.8em;
    background: linear-gradient(90deg, #6b5310, #7a5c14);
    color: #f5f5f5;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    border: 1px solid #8b6914;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 105, 20, 0.3);
    background: linear-gradient(90deg, #7a5c14, #8b6914);
}

.social-link.facebook {
    background: linear-gradient(90deg, #1877f2, #0a66c2);
    border: 1px solid #1877f2;
    color: #ffffff;
}

.social-link.facebook:hover {
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
    background: linear-gradient(90deg, #0a66c2, #054a99);
}

.contact-form {
    padding: 2.5em;
    border-radius: 1.2em;
    border: 2px solid #8b6914;
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08), rgba(160, 121, 26, 0.06));
}

.contact-form h3 {
    color: #8b6914;
    margin-bottom: 1.5em;
    font-size: 1.3em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1em;
    margin-bottom: 1.2em;
    background: rgba(26, 20, 16, 0.5);
    border: 2px solid rgba(139, 105, 20, 0.3);
    border-radius: 0.8em;
    color: #e0e0e0;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1em center;
    background-size: 1.5em;
    padding-right: 2.5em;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(139, 105, 20, 0.3);
    background: rgba(26, 20, 16, 0.7);
    border-color: #8b6914;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form option {
    background: #1a1410;
    color: #e0e0e0;
}

.submit-button {
    width: 100%;
    padding: 1.1em;
    background: linear-gradient(90deg, #6b5310 0%, #7a5c14 100%);
    color: #f5f5f5;
    border: 2px solid #8b6914;
    border-radius: 0.8em;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.2);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(139, 105, 20, 0.4);
    background: linear-gradient(90deg, #7a5c14 0%, #8b6914 100%);
}

.success-message {
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.15), rgba(56, 142, 60, 0.15));
    border: 2px solid #4caf50;
    color: #81c784;
    padding: 1.5em;
    border-radius: 0.8em;
    text-align: center;
    font-weight: bold;
    font-size: 1.05em;
    margin-top: 1em;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: #8b6914;
    text-align: center;
    padding: 2em;
    border-top: 3px solid #8b6914;
    margin-top: 0;
    width: 100%;
}

/* RESPONSIVITA */
@media (max-width: 1200px) {
    .hero-image {
        width: 45%;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 500px;
        gap: 2em;
    }

    .hero-image {
        width: 50%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .animated-title {
        font-size: 2.5em;
    }

    .soundwave-bg {
        width: 100%;
        opacity: 0.1;
    }

    .hero-image {
        width: 70%;
        max-width: 400px;
    }

    .about-container {
        flex-direction: column;
    }

    nav ul {
        gap: 1.5em;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 0.8em;
        gap: 0.8em;
    }

    nav ul {
        gap: 0.8em;
        font-size: 0.8em;
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 1.2em;
    }

    .logo-icon {
        font-size: 1.4em;
    }

    main {
        padding: 1.5em 1em;
    }

    .section {
        padding: 1.8em 1.5em;
        margin-bottom: 2em;
    }

    .section h2 {
        font-size: 2em;
        margin-bottom: 1.2em;
    }

    .animated-title {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 0.95em;
    }

    .cta-button {
        padding: 0.9em 2em;
        font-size: 0.95em;
    }

    .hero-image {
        width: 100%;
        max-width: 320px;
    }

    .contact-section {
        padding: 1.8em 1.5em;
        margin-bottom: 0;
        border-radius: 0;
    }

    .contact-container {
        gap: 2em;
    }

    .contact-form {
        padding: 2em;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0.6em;
        gap: 0.6em;
    }

    nav ul {
        gap: 0.5em;
        font-size: 0.7em;
    }

    .logo {
        font-size: 1em;
    }

    .logo-icon {
        font-size: 1.2em;
    }

    main {
        padding: 1em 0.8em;
    }

    .section {
        padding: 1.5em 1.2em;
        margin-bottom: 1.5em;
        border-radius: 0.8em;
    }

    .section h2 {
        font-size: 1.6em;
        margin-bottom: 1em;
    }

    .animated-title {
        font-size: 1.4em;
    }

    .hero-subtitle {
        font-size: 0.9em;
        margin-bottom: 1.2em;
    }

    .cta-button {
        padding: 0.8em 1.5em;
        font-size: 0.85em;
        gap: 0.5em;
    }

    .button-icon {
        font-size: 1em;
    }

    .hero {
        border-radius: 0;
    }

    .hero-image {
        width: 100%;
        max-width: 280px;
    }

    .image-placeholder {
        border-radius: 0.8em;
        font-size: 1em;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }

    .faq-container {
        gap: 1em;
    }

    .faq-question {
        padding: 1.2em;
    }

    .faq-toggle {
        font-size: 1.3em;
        margin-left: 0.8em;
    }

    .contact-section {
        padding: 1.5em;
        margin-bottom: 0;
        border-radius: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .contact-form {
        padding: 1.5em;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 0.9em;
        margin-bottom: 1em;
        font-size: 0.95em;
    }

    .submit-button {
        padding: 0.9em;
        font-size: 0.95em;
    }

    footer {
        padding: 1.5em;
        font-size: 0.9em;
    }

    .modal-image {
        max-width: 90%;
        max-height: 80%;
    }
	/* Video badge v galérii */


}
