/* General Styles */

@font-face {
  font-family: 'CustomFont'; /* Name of your font */
  src: url('fonts/Fontspring-DEMO-allroundgothic-book.otf') format('otf'), /* Primary format */
       url('fonts/Montserrat-Regular.ttf') format('woff');   /* Fallback format */
  font-weight: normal; /* Define weight (normal, bold, etc.) */
  font-style: normal;  /* Define style (normal, italic, etc.) */
}

body {
  font-family: 'CustomFont', sans-serif; /* Use custom font with fallback */
  color: #fff;
  margin: 0;
  padding: 0;
  background-color: #081C24;
}

/* Full-screen overlay */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* Background color of the loading screen */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it stays above all other elements */
}

/* Loading text */
#loading-text {
  font-size: 64px; /* Text size */
  font-weight: bold; /* Bold text */
  color: #FF009D; /* Text colour */
}


h2{
  font-weight: 400;
}

/* Logo */
.logo {
  height: 50px; /* Ensures consistent logo size */
}

/* Hero Section Styling */
.hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100%;
  overflow: hidden; /* Ensure no content spills outside */
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire section */
  z-index: -1; /* Push the image behind the content */
}

.image-overlay {
  position: relative;
  height: 100%;
  width: 100%;
  /* Optional: Add a semi-transparent overlay for better text contrast */
  /* background: rgba(0, 0, 0, 0.5); */
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* Ensure text is readable */
  text-align: center;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1100px;
  position: relative;
  margin: auto;
  padding-bottom: 100px;
}

.slideshow-container-air{
  max-width: 1250px;
  position: relative;
  margin: auto;
  padding-bottom: 100px;
}

.mySlides {
  display: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Drop shadow */
  border-radius: 10px; /* Optional: adds rounded corners for a polished look */
}

.slideshow-container {
  position: relative;
}

.text {
  color: white;
  font-size: 18px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.prev, .next {
  position: absolute;
  top: 50%;
  padding-left: 56px;
  padding-right: 56px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  text-decoration: none;  /* Ensures no underline */
  border: none;  /* Removes any border, if applied */
}

.prev {
  left: 0;
}

.next {
  right: 0;
}


/* General Section Styling */
.feature-block {
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.feature-block img {
  width: 100%; /* Full width */
  height: 150%; /* Full height */
  object-fit: cover; /* Maintain image proportions */
  transition: transform 0.3s ease-in-out; /* Smooth zoom effect */
}

.feature-block:hover img {
  transform: scale(1.1); /* Zoom effect on hover */
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.feature-block:hover .overlay-text {
  opacity: 1; /* Show text on hover */
}

.overlay-text h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Adjusting text and spacing */
section .lead {
  font-size: 1.2rem; /* You can adjust this as needed */
  line-height: 1.6;
}

section .font-weight-bold {
  font-weight: 700;
}

section.bg-light {
  background-color: #f8f9fa;
}

section.bg-light h2 {
  font-weight: 600;
  color: #081C24;
}

.bg-dark{
  color: #081C24;
}

/* Portfolio Cards */
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a soft shadow to each card */
  border: none; /* Removes default card borders */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px); /* Creates a lift effect on hover */
}

.card-img-top {
  height: 200px;
  object-fit: cover; /* Ensures consistent image sizes without distortion */
}

/* Navbar */
.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer; /* Pointer cursor on hover */
}

.navbar-nav .nav-link:hover {
  color: #FF009D;
}

footer {
  background-color: #081C24; /* Dark background */
  color: #f8f9fa; /* Light text */
}

footer a {
  color: #f8f9fa; /* Light icon colour */
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  color: #0d6efd; /* Bootstrap primary blue on hover */
}

footer svg {
  width: 32px;
  height: 32px;
}

.social-icons{
  width: 33.333%; /* Equivalent to 4 columns in a 12-column grid system */
  flex: 0 0 auto; /* Prevents the column from shrinking or growing */
  display: block; /* Default display style for a column */
  box-sizing: border-box; /* Ensures padding and border are included in width/height */
  display: flex; /* Enables flexbox layout */
  justify-content: flex-start; /* Aligns flex items to the start of the container */
  gap: 24px; /* Sets the spacing between flex items (Bootstrap gap-4 default is 1.5rem) */
}

/* Back to Top Button Styles */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* 20px from the bottom */
  right: 30px; /* 30px from the right */
  z-index: 99; /* Ensure it is above other elements */
  width: 48px; /* Set width */
  height: 48px; /* Set height */
  border: 2px solid #FF009D; /* Border colour */
  background-color: transparent; /* Transparent background */
  color: #FF009D; /* Arrow colour */
  text-align: center; /* Centre align text */
  border-radius: 50%; /* Make it circular */
  font-size: 24px; /* Adjust arrow size */
  cursor: pointer; /* Pointer cursor on hover */
  display: flex; /* Enable flexbox for centring */
  align-items: center; /* Centre vertically */
  justify-content: center; /* Centre horizontally */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

#myBtn:hover {
  background-color: #FF009D; /* Fill the circle on hover */
  color: white; /* Change arrow colour to white on hover */
  transform: scale(1.2); /* Slightly enlarge on hover */
}

.portfolio-section{
 background-color: #081C24;
}

/* Portfolio Hero Section */
.portfolio-hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 20px;
  font-family: 'CustomFont', sans-serif; /* Use custom font with fallback */
  text-transform: uppercase;
  text-align: center;
  color: #FF009D; /* Accent colour for text */
}

.portfolio-hero h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.portfolio-hero p {
  font-size: 12px;
  color: #f8f9fa; /* Lighter text for contrast */
}

/* Img Section */
.img-section {
  position: relative;
  /* padding: 60px;
  background-color: #FFD44D; */
  border-radius: 20px;
  max-width: 1400px;
  margin: 40px auto;
  text-align: center;
}

.img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Portfolio Overview Section */
.portfolio-overview {
  padding: 60px 20px;
  background-color: #081C24; /* Deep background for contrast */
  color: #f8f9fa; /* Light text for visibility */
  text-align: left; /* Centre-align content */
}

.portfolio-overview h2 {
  font-size: 32px; /* Large, bold headline */
  font-weight: bold; /* Strong emphasis */
  margin-bottom: 20px; /* Space below heading */
  color: #FF009D; /* Vibrant pink to tie in branding */
}

.portfolio-overview p {
  font-size: 18px; /* Slightly larger for readability */
  line-height: 1.8; /* Comfortable spacing */
  margin-bottom: 40px; /* Spacing below paragraph */
  color: #f8f9fa; /* Maintain light text colour */
}

/* Info Section */
.info-section {
  color: #fff; /* White text */
  padding: 40px 20px;
}

.info-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 96px;
}

.info-item {
  flex: 1;
  text-align: left;
}

.info-item h3 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #FF009D;
}

.info-item h6{
  font-weight: bold;
}

.info-item p {
  font-size: 14px;
  line-height: 1.5;
}


/* Gallery Section */
.portfolio-gallery {
  padding-top: 10px;
}

.portfolio-details {
  padding: 50px 20px;
}

.portfolio-details h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.portfolio-details p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.portfolio-details .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #FF009D;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.portfolio-details .cta-button:hover {
  background-color: #cc0078;
}

/* About Page Section */
.about-section {
  background-color: white;
  padding: 80px 20px; /* Space around the section */
  text-align: left; /* Left-align content */
  color: #081C24 /* Light text for visibility */
}

.about-section h1 {
  font-size: 32px; /* Large headline size */
  font-weight: bold; /* Strong emphasis */
  margin-bottom: 20px; /* Space below heading */
  color: #FF009D; /* Vibrant pink branding */
}

.about-section p {
  font-size: 20px; /* Slightly larger for readability */
  line-height: 1.8; /* Comfortable line spacing */
  margin-bottom: 40px; /* Spacing below paragraph */
}

.about-grid {
  display: flex;
  flex-wrap: wrap; /* Ensure content adjusts to screen size */
  justify-content: center; /* Centre-align grid */
  gap: 40px; /* Space between items */
  max-width: 1200px; /* Limit width for better layout */
  margin: 0 auto; /* Centre-align the grid container */
}

.about-cta {
  margin-top: 40px; /* Space above button */
  padding-top: 32px;
}

.about-cta h5{
  padding-bottom: 20px;
}

.about-cta a {
  display: inline-block;
  padding: 12px 30px; /* Button size */
  background-color: #FF009D; /* Vibrant branding */
  color: #fff; /* Light text */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  font-size: 1rem; /* Button text size */
  font-weight: bold; /* Emphasise text */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.about-cta a:hover {
  background-color: #cc0078; /* Darker shade on hover */
}

/* Contact Page Styles */
.contact-section {
  background-color: white;
  color: #081C24;
  padding: 80px 20px; /* Space around the section */
}

.contact-section h1 {
  font-size: 32px;
  font-weight: bold;
  color: #FF009D; /* Branding pink */
  margin-bottom: 20px;
  text-align: center;
}

.contact-section p {
  font-size: 18px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap; /* Adjust layout for smaller screens */
  gap: 40px;
  justify-content: center; /* Centre-align content */
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}


.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: left;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #FF009D;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #fff;
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
  color: #ccc; /* Lighter placeholder */
}

.contact-form button {
  background-color: #FF009D;
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc0078;
}


.form-status {
  margin-top: 10px;
  font-size: 1rem;
}

.form-status.error {
  color: red;
}

#thankYouMessage {
  font-size: 24px;
  padding: 10px;
  border: 2px solid #FF009D;
  background-color: #fff;
  border-radius: 8px;
}

/* Custom Utilities */
.text-light {
  color: #f8f9fa ;
}

.text-dark {
  color: #081C24;
}

.pink{
  color: #FF009D;
}

.text-weight{
  font-weight: bold;
}


/* Tablet styles */
@media (max-width: 769px )and (max-width: 1024px) {
  body {
      font-size: 16px; /* Slightly smaller font for tablet */
  }

  .hero-section {
      height: 400px; /* Smaller height for tablet */
  }

  .hero-section h1 {
      font-size: 36px; /* Adjust heading size for tablet */
  }

  .hero-section p {
      font-size: 20px; /* Adjust paragraph size for tablet */
  }

  .social-icons {
      width: 30px; /* Resize social icons for tablet */
      height: 30px;
  }
}

/* Mobile styles */
@media (min-width: 376px) and (max-width: 768px ) {
  
  .hero-section {
      height: 200px; /* Reduced height for mobile */
      background-size: contain; /* Ensure hero image fits within bounds */
  }

  .hero-section h1 {
      font-size: 24px; /* Smaller heading size for mobile */
  }

  .hero-section p {
      font-size: 16px; /* Smaller paragraph size for mobile */
  }

  .overlay-text h4 {
    font-size: 20px;

  }

  .portfolio-overview h2 {
    font-size: 24px; /* Large, bold headline */
  }
  
  .portfolio-overview p {
    font-size: 14px; /* Slightly larger for readability */
  }

  .info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 32px;
  }

  .hero-title{
    font-size: 24px;
  }
  
  .info-item {
    flex: 1;
    text-align: left;
  }
  
  .info-item h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #FF009D;
  }
  
  .info-item h6{
    font-weight: bold;
  }
  
  .info-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-section h1{
    font-size: 20px; /* Smaller heading size for mobile */
  }

  .about-cta {
    font-size: 20px; /* Smaller heading size for mobile */
  }

  .about-section p{
    font-size: 14px; /* Smaller heading size for mobile */
  }

  footer svg {
    width: 24px;
    height: 24px;
  }

  footer p{
    font-size: 14px;
  }

    /* Back to Top Button Styles */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* 20px from the bottom */
  right: 30px; /* 30px from the right */
  z-index: 99; /* Ensure it is above other elements */
  width: 18px; /* Set width */
  height: 18px; /* Set height */
  border: 2px solid #FF009D; /* Border colour */
  background-color: transparent; /* Transparent background */
  color: #FF009D; /* Arrow colour */
  text-align: center; /* Centre align text */
  border-radius: 50%; /* Make it circular */
  font-size: 16px; /* Adjust arrow size */
  cursor: pointer; /* Pointer cursor on hover */
  display: flex; /* Enable flexbox for centring */
  align-items: center; /* Centre vertically */
  justify-content: center; /* Centre horizontally */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

#myBtn:hover {
  background-color: #FF009D; /* Fill the circle on hover */
  color: white; /* Change arrow colour to white on hover */  
}
  
}
