* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
    background-color: black;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
}

main {
    padding-top: 90px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: rgba(0, 0, 0, 0.95);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(95, 177, 179, 0.1);
    backdrop-filter: blur(10px);
}

#logo {
    height: 120px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #5fb1b3;
}

.main-nav a:hover::after {
    width: 100%;
}

.contact-button {
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    color: black;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: "Alex Brush", cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(95, 177, 179, 0.3);
    text-decoration: none;
    display: inline-block;
    font-family: 'Alex Brush', cursive;

}

.contact-button:hover {
    border: #edbc36 2px, solid;
}

.burger-menu {
  display: none;                 
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;

  z-index: 1001;
}

.burger-menu:focus {
  outline: none;
}

.burger-line {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #5fb1b3, #edbc36);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
    max-width: min(400px, 100vw);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(95, 177, 179, 0.1);
}

.mobile-nav a {
    display: block;
    padding: 20px 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.mobile-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    transition: width 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
    color: #5fb1b3;
    padding-left: 25px;
}

.mobile-nav a:hover::before {
    width: 15px;
}

.mobile-contact {
    background: linear-gradient(135deg, #5fb1b3, #edbc36);
    color: black !important;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.mobile-contact:hover {
    background: linear-gradient(135deg, #edbc36, #5fb1b3);
    padding-left: 15px !important;
}

.hero {
    text-align: center;
    position: relative;
    margin-top: -10px;

}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(95, 177, 179, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
}

.hero h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #5fb1b3, #edbc36);
    border-radius: 2px;
}

.hero h2 {
    font-family: "Alex Brush", cursive;
    font-size: 3rem;
    color: #edbc36;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    margin-top: 30px;
}

.legal-content {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(95, 177, 179, 0.2);
    border-radius: 15px;
    padding: 35px 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.legal-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 177, 179, 0.05), transparent);
    transition: left 0.6s ease;
}

.legal-section:hover::before {
    left: 100%;
}

.legal-section:hover {
    border-color: #5fb1b3;
    box-shadow: 0 10px 40px rgba(95, 177, 179, 0.15);
}

.section-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #5fb1b3, #edbc36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(95, 177, 179, 0.25);
}

.section-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.legal-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: #edbc36;
    margin-bottom: 20px;
    font-weight: 500;
}

.legal-text h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: #5fb1b3;
    margin: 25px 0 12px;
    font-weight: 500;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    font-weight: 300;
}

.legal-text strong {
    color: #5fb1b3;
    font-weight: 500;
}

.legal-text ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.legal-text ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
}

.legal-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5fb1b3;
    font-weight: bold;
    font-size: 1.3rem;
}

.legal-footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(95, 177, 179, 0.08), rgba(237, 188, 54, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(95, 177, 179, 0.2);
}

.legal-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.back-button {
    display: inline-block;
    background: linear-gradient(135deg, #5fb1b3, #4a9b9d);
    color: black;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95, 177, 179, 0.3);
}

.back-button:hover {
    background: linear-gradient(135deg, #4a9b9d, #5fb1b3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 177, 179, 0.4);
}

.site-footer {
    background: black;
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(95, 177, 179, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #5fb1b3;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 968px) {


  .burger-menu { display: flex; }

  .main-nav { display: none; }
  .contact-button { display: none; }

  .site-header {
    position: fixed;            
    top: 0; left: 0; right: 0;
    display: flex;
    flex-direction: row;        
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  #logo { height: 80px; }

  main { padding-top: 110px; }

    .site-header {
        flex-direction: row;
        gap: 20px;
        padding: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .hero {
        padding: 140px 30px 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .legal-content {
        padding: 30px 20px 60px;
    }

    .legal-section {
        padding: 25px 20px;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .legal-text h3 {
        font-size: 1.1rem;
    }

    .legal-text p,
    .legal-text ul li {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {

    .mobile-menu {
        max-width: 100%;
    }

    .mobile-nav a {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .legal-section {
        padding: 20px 15px;
    }

    .section-icon {
        width: 50px;
        height: 50px;
    }

    .section-icon svg {
        width: 24px;
        height: 24px;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}