:root {
  --black: #0b0b0b;
  --gold: #c9a14a;
  --white: #ffffff;
  --gray: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--black);
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 999;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 150px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
}

.nav .btn {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.section {
  padding: 80px 0;
  background: var(--white);
  color: var(--black);
}

.section.dark {
  background: var(--black);
  color: var(--white);
}

.section h2 {
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  padding: 30px;
  border: 1px solid var(--gold);
  text-align: center;
  font-weight: 500;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
  display: inline-block;
}

.btn.gold {
  background: var(--gold);
  color: var(--black);
}

.link-gold {
  color: var(--gold);
  text-decoration: underline;
}

.contact-form {
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  font-family: inherit;
}

.footer {
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  background-color: #000;
}

.founder-card {
  display: flex;
  gap: 30px;
  background: var(--white);
  color: var(--black);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.founder-img {
  width: 220px;
  border-radius: 12px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.founder-img:hover {
  transform: scale(1.05);
}

.founder-info h3 {
  margin-bottom: 5px;
}

.founder-info p {
  margin-bottom: 10px;
}

.founder-info {
  flex: 1;
  max-width: 750px;
}

.founder-info h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: 'Cinzel', serif;
}

.founder-info p {
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.founder-info a.link-gold {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .founder-info {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .founder-info {
    max-width: 100%;
  }

  .founder-info p {
    text-align: justify;
  }

  .founder-img {
    width: 200px;
    margin-bottom: 20px;
  }
}

#about .container {
  max-width: 800px;
  margin: auto;
}

#about p {
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word; 
}

#about a.link-gold {
  color: var(--gold);
  text-decoration: underline;
}

.map-wrapper {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 3000;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 25px;
  height: 20px;
  z-index: 2000;
}

.hamburger span {
  background: var(--white);
  height: 3px;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  transition: 0.3s;
  z-index: 1500;
}

.mobile-nav a {
  color: var(--white);
  padding: 15px 20px;
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons h4 {
  color: var(--gold);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .logo { height: 105px; }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a img {
  width: 32px;
  height: 32px;
}

.floating-buttons a:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(201,161,74,0.6);
}

.footer {
  background-color: #0b0b0b;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.footer a {
  color: #f4c430;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 20px;
}

.footer-logo img {
  height: 120px;
  max-width: 100%;
}

.footer-text p {
  margin: 5px 0;
  font-size: 14px;
  text-align: center;
}


#contact .contact-form input,
#contact .contact-form textarea {
  background: #f9f9f9;
  border: 1px solid #bbb;
  color: #000;
  border-radius: 6px;
}

#contact .contact-form input::placeholder,
#contact .contact-form textarea::placeholder {
  color: #666;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 6px rgba(201,161,74,0.6);
}

.map-container {
  position: relative;
  margin-top: 20px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 42px;
  z-index: 10;
  color: var(--gold);
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
  pointer-events: none;
}

.address-box {
  margin-top: 25px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  max-width: 500px;
}

.address-box p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.directions-btn {
  display: inline-block;
  margin-top: 10px;
}

.operating-hours {
  margin: 20px 0 30px;
  padding: 15px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  max-width: 420px;
  font-size: 0.95rem;
}

.section.dark .operating-hours {
  background: rgba(255, 255, 255, 0.05);
}

.operating-hours span {
  color: var(--gold);
  font-weight: 500;
}

.accordion {
  max-width: 700px;
}

.accordion-btn {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.section.dark .accordion-btn {
  color: var(--white);
}

.accordion-btn:hover {
  background: rgba(201,161,74,0.1);
}

.practice-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.practice-modal-content {
  background: var(--white);
  color: var(--black);
  padding: 30px;
  border-radius: 14px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.practice-modal-content h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 15px;
}

.practice-modal-content ul {
  padding-left: 20px;
}

.practice-modal-content li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.practice-modal-close {
  float: right;
  font-size: 26px;
  cursor: pointer;
  color: var(--gold);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 170px; 
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 125px;
  }
}

#about .container {
  max-width: 750px;
  margin: 0 auto; 
}

#about h2 {
  text-align: center;
  margin-bottom: 25px;
}

#about p {
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

#about a.link-gold {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  #about .container {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  #about .container {
    max-width: 100%;
    text-align: center;
  }

  #about p {
    text-align: justify;
  }
}

.practice-hint {
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
}


.accordion-btn {
  position: relative;
  padding-right: 50px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.accordion-btn::after {
  content: "›";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.accordion-btn:hover {
  background: rgba(201,161,74,0.12);
  transform: translateX(4px);
}

.accordion-btn:active {
  background: rgba(201,161,74,0.2);
}

.footer {
  background-color: #0b0b0b;
  color: #fff;
  padding: 30px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.footer a {
  color: #f4c430;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 10px;
}

.footer-links p {
  margin: 5px 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row; 
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }

  .footer-links {
    text-align: right;
  }
}
