@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #000;
      color: #fff;
      font-family: 'Oswald', sans-serif;
    }

    /* HEADER */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 30px;
      z-index: 100;
    }

    header img {
      height: 40px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    header img:hover {
      transform: scale(1.05);
    }

    nav a {
      text-decoration: none;
      color: #fff;
      margin: 0 15px;
      font-weight: 400;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #ff4444;
    }

    /* HERO */
    .hero {
      height: 100vh;
      background: url('photos/pozadia/registracia_pozadie.png') center/cover no-repeat;
      background-size: cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 10%;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .logo-container {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .hero .tct-logo {
      width: 150px;
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: 3px;
      margin-bottom: 15px;
      text-align: center;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 25px;
      max-width: 600px;
      text-align: center;
    }

    /* ENHANCED BUTTON STYLES */
    .hero button {
      padding: 30px 50px;
      background: #3b0000;
      color: #fff;
      border: none;
      font-size: 1.2rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      border-radius: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(126, 19, 19, 0.4);
      position: relative;
      overflow: hidden;
    }

    .hero button:hover {
      background: #0e0000;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(22, 0, 0, 0.6);
    }

    .hero button:active {
      transform: translateY(1px);
    }

    .hero button::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .hero button:hover::after {
      left: 100%;
    }

    /* WORKSHOPS SECTION */
    .section {
      padding: 80px 20px;
      text-align: center;
      background: #111;
    }

    .section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .section p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .workshops {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
    }

    .workshop-card {
      background: #222;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s;
    }

    .workshop-card:hover {
      transform: translateY(-5px);
    }

    .workshop-card img {
      max-width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    /* VIDEO SECTION */
    .video-section {
      padding: 80px 20px;
      text-align: center;
      background: #000;
    }

    .video-section iframe {
      width: 80%;
      height: 400px;
      border: none;
      border-radius: 10px;
    }

    footer {
      background: #111;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
    }
    
    .footer-link {
      color: #3498db;
      text-decoration: none;
      margin-top: 10px;
      display: inline-block;
      transition: color 0.3s;
    }
    
    .footer-link:hover {
      color: #2980b9;
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 3rem;
      }
      .hero p {
        font-size: 1.1rem;
      }
      .hero button {
        padding: 12px 25px;
        font-size: 1rem;
      }
      .hero {
      background: url('photos/pozadia/mobilova_main_page.png')center/cover no-repeat;
      }
    }
    

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }