/* Custom styles for Faded Edges Website */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

#brand-logo {
  height: 150px;
  transition: height 0.5s;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

/* Parallax effect for cover images */
.parallax {
  height: 100vh;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

sup {
  color: red;
  font-size: 15px;
}

.pricing-text {
  color: red;
  font-size: 15px;
}

#special {
  padding-top: 10px;
  padding-bottom: 10px;
}

#cover1 {
  background-image: url("images/parallax/parallax1.jpg");
}

#cover2 {
  background-image: url("images/parallax/parallax2.jpg");
}

#cover3 {
  background-image: url("images/parallax/parallax3.jpg");
}

#cover4 {
  background-image: url("images/parallax/parallax4.jpg");
}

#special1 {
  background-image: url("images/parallax/Landscape Ad 21-Aug-2024 1200x628.png");
}

#cover .text-center,
#cover1 .text-center,
#cover2 .text-center,
#cover3 .text-center,
#cover4 .text-center {
  position: relative;
  z-index: 1;
}

.cover-text-r {
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.7);
  width: 20vw;
  border-radius: 10px;
  /* Adjust the value as needed */
  padding: 20px;
  /* Optional: add padding to ensure the text doesn't touch the edges */
}

.cover-text-l {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.7);
  width: 20vw;
  border-radius: 10px;
  /* Adjust the value as needed */
  padding: 20px;
  /* Optional: add padding to ensure the text doesn't touch the edges */
}

.cover-text-b {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.7);
  width: 40vw;
  border-radius: 10px;
  /* Adjust the value as needed */
  padding: 20px;
  /* Optional: add padding to ensure the text doesn't touch the edges */
}

.cover-text-t {
  position: absolute;
  top: 20px;
  left: 20px;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.7);
  width: 40vw;
  border-radius: 10px;
  /* Adjust the value as needed */
  padding: 20px;
  /* Optional: add padding to ensure the text doesn't touch the edges */
}

.scroll-text h1 {
  font-size: 2vw;
  margin: 0;
  /* Adjust margin as needed */
  color: #343a40;
  text-align: center;
}

.scroll-text p {
  font-size: 1vw;
  margin: 0;
  padding-top: 1vw;
  /* Adjust margin as needed */
  color: #343a40;
  text-align: left;
}

header,
section,
footer {
  position: relative;
  z-index: 0;
  background-color: white;
}

/* Enable visibility of section heading when jumped to using navigation bar*/
section {
  position: relative;
  padding-top: 100px;
  /* Adjust this value based on the height of your fixed header */
}

section::before {
  content: "";
  display: block;
  height: 100px;
  /* Same value as the padding-top */
  margin-top: -100px;
  /* Negative margin to offset the added height */
  visibility: hidden;
}

/* Additional styles for the website */
/*.gallery-item img {
    transition: filter 0.3s;
    filter: grayscale(100%);
}

.gallery-item img:hover {
    filter: grayscale(0%);
}*/

/* Overlay styles for gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.pricing-bronze {
  background-color: rgba(52, 58, 64, 0.2);
}

.pricing-silver {
  background-color: rgba(52, 58, 64, 0.2);
}

.pricing-gold {
  background-color: rgba(52, 58, 64, 0.2);
}

.pricing-extras {
  background-color: rgba(52, 58, 64, 0.2);
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Social media icons styling */
footer i {
  font-size: 1.5rem;
  transition: color 0.3s;
}

.text-linkedin:hover {
  color: #0077b5;
  /* LinkedIn Blue */
}

.text-facebook:hover {
  color: #1877f2;
  /* Facebook Blue */
}

.text-instagram:hover {
  color: #e4405f;
  /* Instagram Pink */
}

.text-twitter:hover {
  color: #1da1f2;
  /* Twitter Blue */
}

.text-pinterest:hover {
  color: #e60023;
  /* Pinterest Red */
}

.text-tiktok:hover {
  color: #69c9d0;
  /* TikTok Teal/Turquoise */
}

/* Media queries for responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
  .parallax {
    height: 70vh;
    background-attachment: scroll;
  }

  .cover-text-r {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-l {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-b {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 60vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-t {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 60vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .scroll-text h1 {
    font-size: 3vw;
    margin: 0;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: center;
  }

  .scroll-text p {
    font-size: 2vw;
    margin: 0;
    padding-top: 1vw;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: left;
  }

  .gallery-item img {
    transition: filter 0.3s;
    filter: grayscale(0%);
  }
}

@media (max-width: 768px) {
  .parallax {
    height: 70vh;
    background-attachment: scroll;
  }

  .cover-text-r {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-l {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 40vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-b {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 80vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-t {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 80vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .scroll-text h1 {
    font-size: 3vw;
    margin: 0;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: center;
  }

  .scroll-text p {
    font-size: 2vw;
    margin: 0;
    padding-top: 1vw;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: left;
  }

  .gallery-item img {
    transition: filter 0.3s;
    filter: grayscale(0%);
  }

  /* Social media icons styling */
  .text-linkedin {
    color: #0077b5;
    /* LinkedIn Blue */
  }

  .text-facebook {
    color: #1877f2;
    /* Facebook Blue */
  }

  .text-instagram {
    color: #e4405f;
    /* Instagram Pink */
  }

  .text-twitter {
    color: #1da1f2;
    /* Twitter Blue */
  }

  .text-pinterest {
    color: #e60023;
    /* Pinterest Red */
  }

  .text-tiktok {
    color: #69c9d0;
    /* TikTok Teal/Turquoise */
  }
}

@media (max-width: 480px) {
  .parallax {
    height: 60vh;
  }

  .cover-text-r {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 50vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-l {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 50vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-b {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 80vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-t {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 80vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .scroll-text h1 {
    font-size: 4vw;
    margin: 0;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: center;
  }

  .scroll-text p {
    font-size: 3vw;
    margin: 0;
    padding-top: 1vw;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: left;
  }

  .gallery-item img {
    transition: filter 0.3s;
    filter: grayscale(0%);
  }

  /* Social media icons styling */
  .text-linkedin {
    color: #0077b5;
    /* LinkedIn Blue */
  }

  .text-facebook {
    color: #1877f2;
    /* Facebook Blue */
  }

  .text-instagram {
    color: #e4405f;
    /* Instagram Pink */
  }

  .text-twitter {
    color: #1da1f2;
    /* Twitter Blue */
  }

  .text-pinterest {
    color: #e60023;
    /* Pinterest Red */
  }

  .text-tiktok {
    color: #69c9d0;
    /* TikTok Teal/Turquoise */
  }
}

/* Specific media query for iPad landscape mode */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .parallax {
    height: 70vh;
    background-attachment: scroll;
    background-position: center center;
  }

  .cover-text-r {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 30vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-l {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 30vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-b {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 90vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .cover-text-t {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    width: 90vw;
    border-radius: 10px;
    /* Adjust the value as needed */
    padding: 20px;
    /* Optional: add padding to ensure the text doesn't touch the edges */
  }

  .scroll-text h1 {
    font-size: 2.5vw;
    margin: 0;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: center;
  }

  .scroll-text p {
    font-size: 1.5vw;
    margin: 0;
    padding-top: 1vw;
    /* Adjust margin as needed */
    color: #343a40;
    text-align: left;
  }

  .gallery-item img {
    transition: filter 0.3s;
    filter: grayscale(0%);
  }

  /* Social media icons styling */
  .text-linkedin {
    color: #0077b5;
    /* LinkedIn Blue */
  }

  .text-facebook {
    color: #1877f2;
    /* Facebook Blue */
  }

  .text-instagram {
    color: #e4405f;
    /* Instagram Pink */
  }

  .text-twitter {
    color: #1da1f2;
    /* Twitter Blue */
  }

  .text-pinterest {
    color: #e60023;
    /* Pinterest Red */
  }

  .text-tiktok {
    color: #69c9d0;
    /* TikTok Teal/Turquoise */
  }
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
}

/* Remove white space on larger screens */
.parallax {
  margin-left: auto;
  margin-right: auto;
}

/* Utilize Flexbox for more consistent and flexible layouts */
.navbar-nav {
  flex-direction: row;
  align-items: center;
}

.navbar-nav .nav-item {
  margin-left: 15px;
}

/* Add this at the end of your styles.css */

/* Pricing card adjustments */
.card {
  margin-bottom: 30px;
  /* Adjust the margin as needed for spacing */
  border-radius: 15px;
  /* Slightly rounded borders */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: Adds a subtle shadow for better visual separation */
  overflow: hidden;
  /* Ensure content is contained within the rounded corners */
}

.card-body {
  padding: 20px;
  /* Ensure proper padding inside the card */
}

.card-header {
  border-radius: 15px 15px 0 0;
  /* Rounded borders for the card header */
  font-weight: bold;
  /* Make the header text bold */
}

/* Custom styles for form status messages */
.alert {
  margin-top: 15px;
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* FIXED Competition CTA Positioning */
#cover1 {
  position: relative; /* ensures absolute children position correctly */
}

.competition-float {
  position: absolute !important;
  right: 90px;
  top: 35%;
  transform: translateY(-50%);
  width: 320px;
  height: auto;
  z-index: 10;
  display: block;
  cursor: pointer;
}

.competition-float:hover {
  transform: translateY(-50%) scale(1.05);
  transition: 0.3s ease;
}

/* Tablet */
@media (max-width: 1024px) {
  .competition-float {
    width: 260px;
    right: 60px;
    top: 40%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .competition-float {
    position: absolute !important;
    width: 170px;
    right: 20px;
    top: 10% !important;
    transform: none !important; /* critical for Safari */
  }
}

/* Premium Competition Section */
.competition-info {
  background: linear-gradient(135deg, #fffaf3 0%, #fff3df 100%);
  border-left: 6px solid #c9a227; /* Elegant gold */
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
}

.competition-info h4 {
  color: #8b6f1a; /* Deep muted gold */
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.competition-info h5 {
  margin-top: 20px;
  font-weight: 600;
  color: #5a4a1f;
}

.competition-info ul {
  padding-left: 20px;
}

.competition-info li {
  margin-bottom: 10px;
  color: #343a40;
}

.competition-info strong {
  color: #6b5315;
}
