/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background-color: #000000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e00c0c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0000;
}

.login-btn {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 2px solid #ff0000;
    border-radius: 4px;
}

/* Hero  */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ff0000;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
}

/* Highlights */
.highlights {
    padding: 6rem 4rem;
    background-color: #111111;
}

.highlight-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    text-align: center;
}

.highlight-card h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

/* Membership  */
.membership {
    padding: 6rem 4rem;
    background-color: #000000;
}

.membership h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff0000;
}

.membership-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.membership-info {
    text-align: center;
}

.membership-info img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.membership-info h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.membership-info p {
    margin-bottom: 1.5rem;
}

.secondary-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: 2px solid #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #ff0000;
}
/*  logo size */
.logo-img {
    max-height: 60px;     
    width: auto;          
    display: block;
  }
  

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .menu-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

/* Footer */
footer {
    background-color: #111111;
    padding: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-info h3 {
    color: #ff0000;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

/*Getting Starting Styling -----------------------------------*/
.getting-started {
    background-color: #000;
    color: #fff;
    padding: 6rem 4rem;
}

.getting-started-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.getting-started-text {
    flex: 1 1 55%;
}

.getting-started-text h2 {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.getting-started-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.getting-started-text a {
    color: #ff0000;
    text-decoration: underline;
}

.getting-started-image {
    flex: 1 1 40%;
}

.getting-started-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid red;
}


/* Services Styling -------------------------------------------*/
.services-stack {
    padding: 8rem 4rem 4rem;
    background-color: #000;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-inline: auto;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    position: relative;
    flex: 1 1 48%;
    max-width: 48%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid red;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.service-image:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.overlay p {
    font-size: 1rem;
}

.service-text {
    flex: 1 1 48%;
    max-width: 48%;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.service-bullets {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    color: #fff;
    line-height: 1.6;
    font-size: 1.05rem;
}


/*Services Intro ------------------------------------------ */
.services-intro {
    padding: 6rem 4rem 2rem;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.services-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Inquiry Form Styling --------------------------------------*/
.inquiry-form {
    background-color: #000;
    color: #fff;
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-form h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 2rem;
    text-align: center;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 1 1 100%;
}

label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

label span {
    color: red;
}

input,
select,
textarea {
    background-color: #111;
    color: #fff;
    border: 1px solid #444;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #ff0000;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    margin-top: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #cc0000;
}


/* About Page Styling--*/
.about-section {
    padding: 10rem 4rem 6rem;
    background-color: #000000;
    color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid red;
    object-fit: cover;
}

/* About Text */
.about-text {
    margin-bottom: 4rem; 
}

.about-text h2 {
    margin-top: -1rem; 
}

.about-text p {
    margin-top: -1rem; 
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 2rem; 
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem; 
}

.about-hero-image {
    position: relative;
    background: url('./photos/hero-image.jpg') no-repeat center center/cover;
    height: 60vh;
    width: 100%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Our Story Section */
.story-image img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: 2px solid #ff0000;
    object-fit: cover;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
}

.story-timeline {
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    width: 15px;
    height: 15px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-top: 5px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #ff0000;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin: 5px 0;
}

.timeline-content p {
    font-size: 1rem;
    color: #ccc;
}

/* Story Container */
.story-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

/* Story Image */
.story-image {
    flex: 1 1 40%; 
    max-width: 500px; 
    position: relative;
}

.story-image img {
    width: 100%; /
    height:auto; 
    border-radius: 8px; 
    border: 2px solid #ff0000; 
    object-fit: cover; 
}

/* Story Timeline */
.story-timeline {
    flex: 1 1 55%; 
    padding: 1rem;
}

/* Our Philosophy Section */
.philosophy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.value-icon {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    color: #ccc;
}

/* Meet the Team Section */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ff0000;
    margin-bottom: 1rem;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ff0000;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.team-member h4 {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Achievements Section */
.achievements-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    width: 200px;
}

.achievement-item img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 2px solid #ff0000;
}

.achievement-item h3 {
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 1rem;
    color: #ccc;
}

/* Facility Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem; 
    margin-top: 2rem; 
    justify-content: center; 
}

.gallery-item {
    text-align: center;
    background-color: #1a1a1a; 
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* Gallery Item Images */
.gallery-item img {
    width: 80%; 
    height: 400px; 
    object-fit: cover; 
    border-radius: 8px; 
    border: 2px solid #ff0000; 
}

.gallery-caption h3 {
    font-size: 1.2rem;
    color: #ff0000;
    margin-top: 1rem;
}

.gallery-caption p {
    font-size: 1rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Facility Gallery Section */
.facility-gallery {
    padding: 2rem; /* Ajusta o espaçamento interno */
    background-color: #1a1a1a; /* Define o fundo cinza */
    border-radius: 8px; /* Bordas arredondadas */
    max-width: auto; /* Limita a largura máxima */
    margin: 3rem auto; /* Centraliza o container */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra opcional */
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem; /* Espaçamento inferior */
}

.section-header h2 {
    font-size: 2rem;
    color: #ff0000;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Contact Page Specific Styling */
.contact-section {
    padding: 10rem 4rem 6rem;
    background-color: #000;
    color: #fff;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-info {
    flex: 1 1 40%;
  }
  
  .contact-info h2 {
    color: #ff0000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .contact-info strong {
    color: #ff0000;
  }
  
  .contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-method {
    background-color: #111;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1 1 calc(33% - 1rem);
    min-width: 250px;
    text-align: center;
    border-bottom: 3px solid #ff0000;
  }
  
  .contact-method h4 {
    color: #ff0000;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    flex: 1 1 40%;
    background-color: #111;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff0000;
  }
  
  .contact-form h3 {
    color: #ff0000;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #ff0000;
    outline: none;
  }
  
  .contact-form button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
  }
  
  .contact-form button:hover {
    background-color: #cc0000;
  }
  
  .map-container {
    width: 100%;
    margin-top: 4rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ff0000;
  }
  
  .map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
/* Add spacing below each paragraph */
.testimonials-container p {
    margin-bottom: 1.5rem; /* Adiciona um espaço maior abaixo de cada parágrafo */
}
/* Testimonials Section */
.testimonials {
    padding: 6rem 4rem;
    background-color: #111111;
    color: #ffffff;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.section-header .red-line {
    width: 50px;
    height: 4px;
    background-color: #ff0000;
    margin: 0.5rem auto;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #ff0000;
}

/* Responsive Design */

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        display: none;
    }
    .nav-links.nav-open {
        display: flex;
      }
    .hero {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .highlights,
    .membership {
        padding: 4rem 2rem;
    }
    .menu-toggle {
        display: block;
      }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-section {
        padding: 8rem 2rem 4rem;
      }
    
      .contact-container {
        flex-direction: column;
      }
    
      .contact-method {
        flex: 1 1 100%;
      }
      /* About page responsive */
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content h1 span {
        font-size: 3rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .philosophy-values,
    .team-container,
    .gallery-container {
        justify-content: center;
    }

    .our-story,
    .our-philosophy,
    .meet-the-team,
    .achievements,
    .facility-gallery,
    .testimonials,
    .join-cta {
        padding: 4rem 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 90%;
    }
    .story-timeline::before {
        left: 20px;
    }
.about-hero-image {
    position: relative;
    background: url('./photos/hero-image.jpg') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Add a dark overlay for better text contrast */
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}
    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 14px;
    }
    }
    @media (max-width: 480px) {
        .about-hero-content h1 {
            font-size: 2rem;
        }
    
        .about-hero-content h1 span {
            font-size: 2.3rem;
        }
    
        .counter {
            font-size: 2.5rem;
        }
    
        .section-header h2, 
        .cta-container h2,
        .philosophy-content h2 {
            font-size: 2rem;
        }
    }
