/* === Core Variables and Base Styles === */
:root {
    --primary: #A89068;
    --primary-dark: #4B321B;
    --secondary: #4A2B10;
    --light: #ECE9DC;
    --dark: #1A1006;
    --accent: #B49C74;
    --success: #22C55E;
    --warning: #FBBF24;
    --error: #F87171;
    --gray-light: #E5EAF0;
    --gray-mid: #718096;
    --gray-dark: #2D3748;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #9A845F;
  }
  
  /* === Typography === */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }
  
  /* === Layout === */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    position: relative;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 15px;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-dark);
  }
  
  /* === Utilities === */
  .bg-light {
    background-color: var(--light);
  }
  
  .bg-dark {
    background-color: var(--dark);
    color: white;
  }
  
  /* === Buttons === */
  .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .btn-primary {
    background-color: var(--primary-dark);
    color: white;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 18, 6, 0.3);
  }
  
  .btn-secondary {
    background-color: var(--light);
    color: var(--dark);
    border: none;
  }
  
  .btn-secondary:hover {
    background-color: #9A845F;
    transform: translateY(-2px);
  }
  
  /* === Header & Navigation === */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 76px; /* Fixed height for header */
  }
  
  .navbar {
    padding: 15px 0;
    height: 100%; /* Fill the fixed header height */
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    transition: height 0.3s ease;
  }

  
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-link {
    display: block;
    padding: 10px 15px;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-dark);
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: all 0.3s ease;
  }
  
  /* Sticky header */
  #header.sticky {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  
 
  
  /* === Hero Section === */
  .hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), ;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1.2s ease;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease;
  }
  
  .hero-content .btn {
    animation: fadeInUp 1.6s ease;
  }
  
  /* === Common Components === */
  .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  
  /* === Content Sections === */
  /* Studio Section */
  .studio-info, 
  .services-content,
  .contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .studio-text h3,
  .services-text h3 {
    margin-top: 1.5rem;
    color: var(--primary-dark);
  }
  
  .studio-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .studio-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Features */
  .features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .feature-box {
    background-color: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .feature-box h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .feature-box ul {
    padding-left: 1.2rem;
    list-style-type: circle;
  }
  
  .feature-box li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  /* Pricing Box */
  .pricing-box {
    background-color: var(--light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
  }
  
  .price-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .price-features li {
    padding: 8px 0;
    border-bottom: 1px solid #9A845F;
  }
  
  .price-features li:last-child {
    border-bottom: none;
  }
  
  /* Contact Section */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  /* === Footer === */
  footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .footer-social h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  /* === Animations === */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* === Responsive Styles === */
  @media (min-width: 576px) {
    .features {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 768px) {
    .studio-info,
    .services-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
      grid-template-columns: 1fr 2fr;
    }
    
    .footer-content {
      grid-template-columns: 2fr 1fr;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  @media (min-width: 992px) {
    .features {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .section-title {
      font-size: 2rem;
    }
    
    .hero-content h1 {
      font-size: 2.8rem;
    }
    
    .hero-content h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .section {
      padding: 60px 0;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content h2 {
      font-size: 1.5rem;
    }
    
    /* Mobile Menu */
    .menu-toggle {
      display: block;
    }
    
    .nav-menu {
      position: fixed;
      top: 76px;
      left: -100%;
      flex-direction: column;
      background-color: var(--light);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }
    
    .nav-menu.active {
      left: 0;
    }
    
    .nav-link {
      margin: 10px 0;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  
  @media (max-width: 576px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-content h2 {
      font-size: 1.2rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .footer-legal {
      display: flex;
      gap: 20px;
    }
  }

  




  /* Hero szekció háttérképpel */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/studio.webp'); /* Itt kell megadni a háttérkép elérési útját */
  background-size: cover;
  background-position: center;
  filter: brightness(0.7); /* Sötétítés, hogy a szöveg jobban látszódjon */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Félig átlátszó háttér a szöveg alatt */
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  background-color: #7e57c2; /* Igazítva a stúdió színvilágához */
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #6a42b0;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Reszponzív igazítások */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero-content {
    max-width: 90%;
  }
}


