@charset "utf-8";
/* CSS Document */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

	
	body{
    font-family:'Poppins', sans-serif;
    background:#f7f7f7;
    color:#222;
    line-height:1.6;
}

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
	  
  
    }
	
	
.active a{
	color:#F90
}

	
    header {

	 min-height: 100vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
      url('https://brisbanephotographycourses.net.au/images/bg-new.webp');
      background-size: cover;
      background-position: center;
      color: white;
    }

    .hero {
      max-width: 700px;
      padding: 80px 0;
    }

    .hero p.small {
      text-transform: uppercase;
      letter-spacing: 4px;
      color: #facc15;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 72px;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    .hero h1 span {
      color: #facc15;
    }

    .hero p {
      font-size: 20px;
      color: #ddd;
      margin-bottom: 40px;
    }

    .btn {
      display: inline-block;
      padding: 16px 36px;
      border-radius: 14px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s ease;
      margin-right: 15px;
    }

    .btn-primary {
      background: #facc15;
      color: black;
    }

    .btn-primary:hover {
      background: #ffe55b;
    }

    .btn-secondary {
      border: 2px solid rgba(255,255,255,0.3);
      color: white;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 42px;
      margin-bottom: 15px;
    }

    .section-title p {
      color: #666;
      max-width: 700px;
      margin: auto;
    }

    .gray {
      background: #f5f5f5;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .feature-card {
      padding: 40px;
    }

    .icon {
      width: 60px;
      height: 60px;
      background: #facc15;
      border-radius: 18px;
      margin-bottom: 25px;
    }

    .card h3 {
      font-size: 26px;
      margin-bottom: 15px;
    }

    .card p {
      color: #666;
    }

    .course-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    .course-content {
      padding: 30px;
    }

    .review-card {
      padding: 40px;
      text-align: center;
    }

    .stars {
      color: #facc15;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .cta {
      background: black;
      color: white;
      text-align: center;
    }

    .cta h2 {
      font-size: 56px;
      margin-bottom: 25px;
    }

    .cta p {
      font-size: 20px;
      color: #ccc;
      margin-bottom: 40px;
    }

    footer.footer,
    .footer {
      background: #000;
      color: #fff;
      padding: 40px 8%;
      text-align: center;
    }

    .footer-social {
      text-align: center;
      margin: 0 0 28px;
      padding-top: 4px;
    }

    .footer-social h4 {
      margin-bottom: 14px;
      color: #f9b233;
      font-size: 1rem;
      font-weight: 600;
    }

    .footer-social-icons {
      display: flex;
      justify-content: center;
      gap: 14px;
    }

    .footer-social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #222;
      color: #fff;
      transition: background 0.2s, color 0.2s;
    }

    .footer-social-icons a:hover {
      background: #f9b233;
      color: #000;
    }

    .footer-social-icons svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 0 0 24px;
    }

    .footer-link-btn {
      display: inline-block;
      padding: 10px 22px;
      border: 1px solid #555;
      border-radius: 50px;
      color: #ddd;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .footer-link-btn:hover {
      background: #f9b233;
      border-color: #f9b233;
      color: #000;
    }

    .footer-copy {
      margin-top: 8px;
      font-size: 14px;
      opacity: 0.85;
    }
	
	
	*{
    margin:0;
    padding:0;
    box-sizing:border-box;

}





/* NAVBAR */
.navbar{
    width:100%;
    background:#111;
    padding:15px 30px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
	
}




.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    margin:auto;
}

.logo{
    color:#fff;
    font-size:24px;
    font-weight:bold;
    text-decoration:none;
}




.logo img{
    height:50px;
    width:auto;
    display:block;
}


/* MENU */
.nav-menu{
    display:flex;
    list-style:none;
}

.nav-menu li{
	margin-left:25px;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#f4b400;
}



/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    background:black;
    min-width:200px;

    border-radius:12px;
 	padding:10px 0;
	

    display:none;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);

    z-index:999;
}



.dropdown-menu li{
    list-style:none;
    margin-left:0;
}

.dropdown-menu a{
    display:block;
    padding:10px 20px;
    color:#fff;
    transition:0.3s;
}

.dropdown-menu a:hover{
    background:#333;
    color:#f4b400;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu{
    display:block;
}

.has-dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#292929;
    min-width:250px;
    display:none;
    z-index:999;
}

.has-dropdown:hover .dropdown-menu{
    display:block;
}



/* HAMBURGER */
.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.menu-toggle span{
    width:25px;
    height:3px;
    background:#fff;
    margin:4px 0;
    transition:0.3s;
}



.learn-section {
    padding: 100px 20px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.learn-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}


.learn-item:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}



.learn-item h3 {
    margin-bottom: 12px;
}

.seo-content-block,
.learn-section,
.testimonial-section,
.faq-section,
.related-courses,
.bottom-seo-content {
    padding: 80px 20px;
}

.learn-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.learn-item,
.testimonial-card,
.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.course-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.course-links a {
    padding: 12px 20px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.course-links a:hover {
    background: #333;
}

.faq-item h3 {
    margin-bottom: 10px;
}

.bottom-seo-content p,
.seo-content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}





/* MOBILE */
@media(max-width:768px){

    .nav-container{
        position:relative;
        width:100%;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        align-items:center;
        display:none;
        padding:12px 0;
        max-height:calc(100vh - 70px);
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li{
        margin:8px 0;
    }

    .nav-menu > li.has-dropdown{
        width:100%;
        max-width:320px;
    }
}

/* PAGE CONTENT */
.content{
    padding-top:100px;
    text-align:center;
}
	
	
	#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    border: none;
    outline: none;
    background: #111;
    color: white;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show Button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Hover Effect */
#backToTop:hover {
    background: #ff6600;
    transform: translateY(-3px);
}
	
.image-box{
    position: relative;
}

.badge{
    position: absolute;
    top: 15px;
    left: 15px;

    background: rgba(0,0,0,0.75);
    color: white;

    padding: 8px 16px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
}
	
	

    @media(max-width: 768px) {
      .hero h1 {
        font-size: 48px;
      }

      .cta h2 {
        font-size: 40px;
      }

      .btn {
        display: block;
        margin-bottom: 15px;
        text-align: center;
      }
	  
	}

	
	@media(max-width:768px){
		
		
		

    .dropdown-menu{
        position:relative;
        display:block;
        max-height:0;
        overflow:hidden;
        transition:max-height 0.4s ease;
        width:100%;
        top:0;
        left:0;
        background:#222;
    }

    .has-dropdown.active .dropdown-menu{
        max-height:min(60vh, 360px);
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
    }

    .dropdown-menu li{
        padding:4px 0;
    }

    .dropdown-menu a{
        display:block;
        padding:8px 20px;
        font-size:16px;
        border-bottom:1px solid rgba(255,255,255,0.08);
    }



}
  
  @media (max-width: 768px) {
  .hero {
    background-image: url("images/bg-new.webp");
  }
}
