@font-face{
    font-family: Proxima;
    src: url(fonts/ProximaNova-Bold.otf)
}

* {
    font-family: Proxima;
    margin: 0;
    padding: 0;    
    box-sizing: border-box;
}

/*ANIMATION FOR ELEMENTS WHEN SCROLLING */
@keyframes appear{
  from{
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes float {
  0% {
      transform: translateY(0);
  }

  50% {
      transform: translateY(-40px);
  }

  100% {
      transform: translateY(0);
  }
}
.header{
    min-height: 80vh;
    width: 100%;
    background-color: #bdc3c7;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-shadow: .1em .1em 0 hsl(200 10% 30%);
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #00cec9;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;  /* Align elements properly */
  flex-direction: column;  /* Stack elements vertically */
  align-items: center;  /* Center elements horizontally */
}

.text-box h1{
    font-size: 70px;
    font-weight:bolder;
    color: #fff;
    text-shadow: .02em .1em 0 hsla(200, 10%, 30%, 0.545);
    animation: float 3s ease-in-out infinite;
}
.text-box p{
    margin: 10px 0px 40px;
    font-size: 25px;
    /* text-shadow: 2px 2px black; */
    color: #333333;
}
.text-box img{
    width: 200px;
    animation: float 3s ease-in-out infinite;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}
.hero-btn:hover{
   border: 1px solid #00cec9; 
   background: #00cec9;
   transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 40px;
        color: #fff;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #00cec9;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -400px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor:pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}




/*----------TEST-----------------*/


/* General Gallery Styling */
.gallery {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px; /* Added padding for better spacing */
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allows tabs to wrap on smaller screens */
  gap: 10px;
  margin-bottom: 20px;
}

.tab-button {
  background: #00cec9;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
  white-space: nowrap; /* Prevents text from breaking */
}

.tab-button.active {
  background: #333;
}

.tab-button:hover {
  background: #555;
}

/* Make tabs stack on smaller screens */
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 90%; /* Make buttons full width */
    text-align: center;
  }
}

/* Tab Content */
.tab-content {
  display: none;
  width: 100%;
  justify-content: center;
}

.tab-content.active {
  display: flex;
}

/* Centering the images */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 90%;
}

.container img {
  object-fit: cover;
  width: 400px;
  height: 250px;
  margin: 10px;
  border: 2px solid #333;
  transition: transform 0.3s, border 0.3s;
}

.container img:hover {
  border: 5px solid #fff;
  transform: scale(1.1);
}

/* Responsive Image Grid */
@media (max-width: 1024px) {
  .container img {
    width: 300px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .container img {
    width: 100%; /* Full width images on small screens */
    height: auto;
  }
}

/* Make videos large and responsive */
#videography video {
  width: 80%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  #videography video {
    width: 95%;
  }
}


  















/*--------FOOTER REAL------------*/
.footer {
    background-color: #333333;
    color: white;
    padding: 40px 20px;
    
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    animation: appear linear;
    animation-timeline: view() ;
    animation-range: entry 0% cover 40%;
  }
  .footer-column {
    flex: 0 0 340px;
    text-align: left;
    min-width: 250px;
  }
  .footer-column img{
    width: 230px;
    padding-bottom: 30px;
  }
 
  
  .footer-column h4 {
    color: #00cec9;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer-column p,
  .footer-column a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
  }
  .footer-column a:hover {
    color: white;
  }
  .social-icons {
    /* display: flex; */    /*Remove if you dont want centered*/
    gap: 10px;
    /* margin-top: 15px; */ /*Remove if you dont want centered*/
  }



  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
  }
  .footer-bottom a {
    color: #00cec9;
    margin: 0 5px;
  }
  .footer-bottom a:hover {
    color: white;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-column {
      flex: 1 1 100%;
    }
  }





















