
/* Smooth scrolling for navigation */
html {
    scroll-behavior: smooth;
}

/* Optional: Add padding to account for fixed header when scrolling */
section {
    scroll-margin-top: 80px;  /* Adjust based on your header height */
}

.my-img{
    
    width: 100vw;
    overflow: hidden;
    margin-top: -50px;
}

.header{
    width: 1140px;
    max-width: 80%;
    
    
}

.col-md-6{
  font-family: "Niconne", cursive;
  font-weight: 400;
  font-style: normal;
  margin: auto;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  max-width: 900px;
  justify-content: space-between;
  position:static;

}

/* Force navbar to right side */
header .navbar {
  width: 100%;
  justify-content: flex-end;
}

header .navbar-collapse {
  flex-grow: 0 !important;
  flex-basis: auto !important;
}

header .navbar-nav {
  margin-left: auto !important;
  flex-direction: row;
}

.nav-item{
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 900px;
  

}


.content{
  position: absolute;
  inset: 0 0 0 0;
  top: 20%;
  margin-top: -2%;
  width: 1140px;
  max-width: 80%;
  left: 10%;
  transition: translatex(-50px);
  padding-right: 30%;
  box-sizing: border-box;
  color: aliceblue;
  text-shadow: 0 5px 10px #0004;
}

.author{
  font-weight: bold;
  letter-spacing: 10px;

}

.title,
.topic{
  font-weight: bold;
  font-size: 4em;
  list-style: 1.3em;
}

.topic{
  color: rgb(24, 13, 129);
}

.buttons{
  display: grid;
  grid-template-columns: repeat(2,130px);
  grid-template-rows: 40px;
  gap: 3px;
  margin-top: 20px;
 
} 

.button{
   border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: poppins;
  font-weight: 500;
}

.button:nth-child(2){
  background-color: transparent;
  color: #eee;
  border: 1px solid #eee;
}

/* About Section with Full Cover Image - Simple Version */
#about {
  padding: 0;
  background-color: #131d2c;
}

.about-cover-container {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}

.about-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 700px;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Darker overlay */
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.about-content-simple {
  text-align: center;
}

.about-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4em;
  font-weight: bold;
  letter-spacing: 5px;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.about-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  line-height: 2;
  color: #f0f0f0;
  margin-bottom: 25px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* PORTFOLIO SECTION */

body {
    background-color: #131d2c;
    margin: 0;
    padding: 0;
}

#portfolio {
    background-color: #131d2c;
    padding: 15px 0;
    
  }
  
  .portfolio-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 5px;
    color: #e4dbdb;
    margin-bottom: 10px;
  }
  
  .portfolio-subtitle {
    font-family: "Poppins", sans-serif;
    color: #b3aeae;
    font-size: 1.1em;
  }
  
  .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .portfolio-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-text {
    text-align: center;
    color: white;
    padding: 20px;
  }
  
  .portfolio-text h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8em;
    margin-bottom: 10px;
  }
  
  .portfolio-text p {
    font-family: "Poppins", sans-serif;
    font-size: 1em;
    color: #ccc;
  }
  
  @media (max-width: 768px) {
    .portfolio-title {
      font-size: 2em;
    }
    
    .portfolio-image {
      height: 250px;
    }
  }

  /* SERVICES SECTION */
#service {
    background-color: #131d2c;
    padding: 15px 0;
}

.services-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 5px;
    color: #e4dbdb;
    margin-bottom: 10px;
}

.services-subtitle {
    font-family: "Poppins", sans-serif;
    color: #b3aeae;
    font-size: 1.1em;
}

.service-card {
    background-color: #1a2538;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3em;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8em;
    color: #e4dbdb;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.service-description {
    font-family: "Poppins", sans-serif;
    color: #b3aeae;
    font-size: 1em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2em;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

/* CONTACT SECTION */
#contact {
    background-color: #131d2c;
    padding: 80px 0 110px 0;  /* 40px top, 80px bottom */
}

#contact .row:first-child {
    margin-bottom: 60px !important;  /* Increase from mb-5 (which is ~3rem/48px) */
}

#contact .row:first-child {
    margin-bottom: 230px !important;  /* Increase from 60px to 100px or more */
}

/* Move contact boxes to the right */
#contact .row:last-child {
    margin-left: 60px;
}

.contact-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 5px;
    color: #e4dbdb;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: "Poppins", sans-serif;
    color: #b3aeae;
    font-size: 1.1em;
}

.contact-form-container {
    background-color: #1a2538;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    background-color: #131d2c;
    border: 1px solid #2a3a52;
    color: #e4dbdb;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
}

.contact-form .form-control:focus {
    background-color: #131d2c;
    border-color: #4a90e2;
    color: #e4dbdb;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.contact-form .form-control::placeholder {
    color: #b3aeae;
}

.contact-submit-btn {
    background-color: #4a90e2;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2em;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background-color: #357abd;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    background-color: #1a2538;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2em;
    color: #4a90e2;
    margin-right: 20px;
    min-width: 50px;
}

.contact-info-text h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5em;
    color: #e4dbdb;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-info-text p {
    font-family: "Poppins", sans-serif;
    color: #b3aeae;
    margin: 0;
    font-size: 1em;
}

.contact-info-text p {
  font-family: "Poppins", sans-serif;
  color: #b3aeae;
  margin: 0;
  font-size: 1em;
}

/* Move contact info boxes down */
#contact .row .col-md-6:last-child {
  padding-top: 30%;
  margin-right: 60%;
}

/* Phone and Location link styling */
.phone-link,
.location-link {
    color: #b3aeae;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover,
.location-link:hover {
    color: #4a90e2;
    text-decoration: none;
}

/* Email and Instagram link styling */
.email-link,
.instagram-link {
  color: #b3aeae;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover,
.instagram-link:hover {
  color: #4a90e2;
  text-decoration: none;
}


/* General link styling in contact info */
.contact-info-text a {
  color: #b3aeae;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-info-text a:hover {
  color: #4a90e2;
  text-decoration: none;
}

@media (max-width: 768px) {
  .contact-title {
      font-size: 2em;
  }
  
  .contact-form-container {
      padding: 30px 20px;
  }
  
  .contact-info-item {
      padding: 20px;
  }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2em;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
}