/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #0066cc;
  transition: all 0.3s ease;
}

a:hover {
  color: #004c99;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333;
}

section {
  padding: 80px 0;
}

/* Header and Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  font-size: 24px;
  margin: 0;
  color: #0066cc;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: #0066cc;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #0066cc;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section with YouTube Background */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    width: 177.78vh;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #004c99;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Services Section */
.services {
  background-color: #fff;
  text-align: center;
  padding: 80px 0;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 0 0 20px 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #0066cc;
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Video Section */
.featured-video {
  background-color: #f8f9fa;
  text-align: center;
  padding: 80px 0;
}

.featured-video h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.featured-video p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Portfolio Section */
.portfolio {
  background-color: #fff;
  text-align: center;
  padding: 80px 0;
}

.portfolio h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.portfolio p {
  margin-bottom: 30px;
  font-size: 18px;
}

.youtube-link {
  margin-bottom: 40px;
}

.social-button {
  display: inline-block;
  background-color: #ff0000 !important;
  color: #fcfcfc !important;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px;
  text-decoration: none !important;
}

.social-button:hover {
  background-color: #cc0000 !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #9c1212 !important;
}

.social-button i {
  margin-right: 10px;
  color: #9c1313 !important;
}

.featured-videos h3 {
  font-size: 24px;
  margin: 20px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-card h4 {
  font-size: 18px;
  padding: 15px;
  margin-bottom: 0;
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Brisbane Night Background Section with Social Media */
.brisbane-social-section {
  position: relative;
  background-image: url('../images/brisbane-night.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 120px 0;
}

.brisbane-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.brisbane-social-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.social-content {
  text-align: center;
}

.social-content h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.brisbane-social-section .social-button {
  min-width: 200px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px;
  text-decoration: none !important;
  color: #b30909 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brisbane-social-section .social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Social Button Colors */
.instagram-button,
.instagram-button:link,
.instagram-button:visited,
.instagram-button:active {
  background-color: #e1306c !important;
  background: #e1306c !important;
  color: #ffffff !important; /* Make text white */
}

.instagram-button:hover {
  background-color: #c13584 !important;
  background: #c13584 !important;
  color: #ffffff !important;
}

.youtube-button,
.youtube-button:link,
.youtube-button:visited,
.youtube-button:active {
  background-color: #ff0000 !important;
  background: #ff0000 !important;
  color: #ffffff !important;
}

.youtube-button:hover {
  background-color: #cc0000 !important;
  background: #cc0000 !important;
  color: #ffffff !important;
}

.facebook-button,
.facebook-button:link,
.facebook-button:visited,
.facebook-button:active {
  background-color: #1877f2 !important;
  background: #1877f2 !important;
  color: #ffffff !important;
}

.facebook-button:hover {
  background-color: #166fe5 !important;
  background: #166fe5 !important;
  color: #ffffff !important;
}

.tiktok-button,
.tiktok-button:link,
.tiktok-button:visited,
.tiktok-button:active {
  background-color: #000000 !important;
  background: #000000 !important;
  color: #ffffff !important;
}

.tiktok-button:hover {
  background-color: #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}


/* About Section */
.about {
  background-color: #fff;
  padding: 80px 0;
}

.about h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-image {
  text-align: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.about-text h3 {
  font-size: 24px;
  color: #0066cc;
  margin-top: 0;
}

.about-text p {
  margin-bottom: 20px;
  color: #666;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
}

/* Contact Section */
.contact {
  background-color: #f8f9fa;
  text-align: center;
  padding: 80px 0;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 40px;
  font-size: 18px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-method {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: inherit;
  text-decoration: none;
}

.contact-method i {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 15px;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-method p, .contact-method a {
  color: #666;
}

.contact-method a:hover {
  color: #0066cc;
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.footer-social h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin: 0 7px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  background-color: #0066cc;
  transform: translateY(-3px);
}

.seo-links {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

.seo-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.seo-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 576px) {
  .seo-links {
    font-size: 10px;
  }
  
  .seo-links a {
    display: block;
    margin: 2px 0;
  }
}

/* Animation classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .brisbane-title {
    font-size: 2rem;
  }
  
  .social-content h2 {
    font-size: 2rem;
  }
  
  .brisbane-social-section {
    background-attachment: scroll;
    min-height: 80vh;
  }
  
  .brisbane-social-section .container {
    min-height: 50vh;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 300px;
  }
  
  .brisbane-social-section .social-button {
    width: 250px;
    min-width: 250px;
  }
}

@media (max-width: 576px) {
  .nav-links {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .brisbane-title {
    font-size: 1.5rem;
  }
  
  .social-content h2 {
    font-size: 1.8rem;
  }
  
  .brisbane-social-section {
    padding: 80px 0;
  }
  
  .brisbane-social-section .container {
    gap: 40px;
  }
}