/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

/* Header Section */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
      background: #097721e3;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 40px;
  }


.intro-image {
    width: 100%; /* Make the image fill the container */
    height: 100%; /* Ensure it covers the full height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}


@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@1,700&display=swap');

.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 30px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 65px;
    height: 65px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  .back-button:before,
  .back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
  }
  
  .back-button:before {
    border: 4px solid #be1b1b;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .back-button:after {
    border: 4px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 5;
    left: 4;
  }
  
  .button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }

/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}
/* Scrollable Content */
.content {
    padding: 20px;
    text-align: left;
    max-width: 800px;
    margin: auto;
    overflow-y: auto;
}
.content p {
    font-family: 'Bahnschrift', sans-serif; /* Use Josefin Sans */
    font-size: 18px; /* Adjust text size */
    font-weight: 400; /* Regular weight */
    line-height: 1.6; /* Improves readability */
    color: #000; /* Adjust if needed */
}
/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

/* Gallery Title */
.gallery-title {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
}


.gallery img {
    width: 100%; /* Make the image fill the container */
    height: 100%; /* Ensure it covers the full height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
.img-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
/* Fullscreen Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal img {
    max-width: 40%;
    max-height: 40%;
}

.color-selection {
    text-align: center;
    margin-top: 50px;
}

.color-selection h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
}

.color-selection img {
    width: 50%;
    transition: opacity 0.3s ease-in-out;
}

.color-options {
    display: flex;
    justify-content: center; /* Center images */
    align-items: center; /* Align them properly */
    gap: 15px; /* Adjust spacing between images */
    margin-top: 10px;
}

.color-img {
    width: 100px !important; /* Adjust the size */
    height: auto !important;
    object-fit: contain;
    cursor: pointer;
    display: block;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border 0.2s ease;
}


.color-img:hover, .color-img.active {
    transform: scale(1.1);
    border: 2px solid #fff;
}
/* Main Container */
.specs-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Sidebar */
.sidebar {
    position: block;
    top: 100px;
    margin-top: 1.20%;
    width: 250px;
    background: #D9E8D4;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar button {
    background: linear-gradient(90deg, #1E6F2D, #48A14C);

    height: 45px;
    color: #F0F8EC; 
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.sidebar button:hover {
    background: #2d7a12; 
    transform: scale(1.05);
}

.specs-section {
    flex: 1;
    text-align: center;
}

.spec-section {
    display: none;
    background: radial-gradient(circle, #EAFBEA 10%, #F9FFF5 90%); /* Aetherial Green Light */
    padding: 30px;
    border-radius: 20px;
    margin: 15px 0;
    color: #0D3310; 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
    border-left: 10px solid #0B3D12; 
    animation: celestialPulse 7s infinite alternate ease-in-out;
}

@keyframes celestialPulse {
    0% {
        box-shadow: 0px 0px 12px rgba(11, 61, 18, 0.4);
    }
    50% {
        box-shadow: 0px 0px 30px rgba(11, 61, 18, 0.6);
    }
    100% {
        box-shadow: 0px 0px 12px rgba(11, 61, 18, 0.4);
    }
}

.spec-section h3 {
    color: #09300D; 
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    border-radius: 14px;
    overflow: hidden;
}

th {
    background: linear-gradient(90deg, #1E6F2D, #48A14C);

    color: #FFFFFF; 
    padding: 18px;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #B0E0A8; 
    font-size: 17px;
}

tr:nth-child(even) {
    background-color: #D8F5D2; 
}

tr:nth-child(odd) {
    background-color: #F4FDF2; 
}

.specs {
    font-style: italic;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 1.8cm;
    margin-top: 4cm;
    text-align: center;
    text-decoration: underline;
    color: #09300D; 
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.18);
}
/* Footer */
.footer {
    background: #097721e3;
    color: #dbe7ff;
    padding: 80px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-brand img {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: 1.3rem;
    margin-right: 14px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ffffff;
  }

/**********************************************Mobile Responsive*****************************************************************************************************************/
@media (max-width: 1024px){

}

@media (max-width: 540px) and (orientation: portrait) {
  body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 2.5px;
    object-fit: cover;
}

/* Header Section */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
      background: #097721e3;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }

.intro-image {
  width: 100vw; /* Full width of the viewport */
  height: auto; /* Full height of the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure the image covers the container without distortion */
}

@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@1,700&display=swap');

.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 15px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 32.5px;
    height: 32.5px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  .back-button:before,
  .back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 3.5px;
  }
  
  .back-button:before {
    border: 2px solid #be1b1b;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .back-button:after {
    border: 2px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 3;
    left: 4;
  }
  
  .button-elem {
    display: block;
    width: 10px;
    height: 10px;
    margin: 8.6px 9px 0 9px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }

/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}
/* Scrollable Content */
.content {
    padding: 10px;
    text-align: left;
    max-width: 400px;
    margin: auto;
    overflow-y: auto;
}
.content p {
    font-family: 'Bahnschrift', sans-serif; /* Use Josefin Sans */
    font-size: 9px; /* Adjust text size */
    font-weight: 400; /* Regular weight */
    line-height: 1.6; /* Improves readability */
    color: #000; /* Adjust if needed */
}
/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 4px;
}

/* Gallery Title */
.gallery-title {
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0;
}


.gallery img {
    width: 100%; /* Make the image fill the container */
    height: 100%; /* Ensure it covers the full height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
.img-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
/* Fullscreen Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal img {
    max-width: 40%;
    max-height: 40%;
}

.color-selection {
    text-align: center;
    margin-top: 12.5px;
}

.color-selection h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 10px;
}

.color-selection img {
    width: 50%;
    transition: opacity 0.3s ease-in-out;
}

.color-options {
    display: flex;
    justify-content: center; /* Center images */
    align-items: center; /* Align them properly */
    gap: 15px; /* Adjust spacing between images */
    margin-top: 5px;
}

.color-img {
    width: 50px !important; /* Adjust the size */
    height: auto !important;
    object-fit: contain;
    cursor: pointer;
    display: block;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border 0.2s ease;
}


.color-img:hover, .color-img.active {
    transform: scale(1.1);
    border: 2px solid #fff;
}
/* Main Container */
.specs-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 550px;
    margin: 20px auto;
    padding: 10px;
}

/* Sidebar */
.sidebar {
    position: block;
    top: 50px;
    margin-top: 1.20%;
    width: 125px;
    background: #D9E8D4;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar button {
    background: linear-gradient(90deg, #1E6F2D, #48A14C);

    height: 22.5px;
    color: #F0F8EC; 
    padding: 5px;
    border: none;
    border-radius: 2.5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.sidebar button:hover {
    background: #2d7a12; 
    transform: scale(1.05);
}

.specs-section {
    flex: 1;
    text-align: center;
}

.spec-section {
    display: none;
    background: radial-gradient(circle, #EAFBEA 10%, #F9FFF5 90%); /* Aetherial Green Light */
    padding: 15px;
    border-radius: 10px;
    margin: 7.5px 0;
    color: #0D3310; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    border-left: 5px solid #0B3D12; 
    animation: celestialPulse 7s infinite alternate ease-in-out;
}

@keyframes celestialPulse {
    0% {
        box-shadow: 0px 0px 12px rgba(11, 61, 18, 0.4);
    }
    50% {
        box-shadow: 0px 0px 30px rgba(11, 61, 18, 0.6);
    }
    100% {
        box-shadow: 0px 0px 12px rgba(11, 61, 18, 0.4);
    }
}

.spec-section h3 {
    color: #09300D; 
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-shadow: 0px 1.5px 2.5px rgba(0, 0, 0, 0.15);
    margin-bottom: 9px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    border-radius: 7px;
    overflow: hidden;
}

th {
    background: linear-gradient(90deg, #1E6F2D, #48A14C);

    color: #FFFFFF; 
    padding: 9px;
    text-align: left;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
}

td {
    padding: 9px;
    text-align: left;
    border-bottom: 1px solid #B0E0A8; 
    font-size: 8.5px;
}

tr:nth-child(even) {
    background-color: #D8F5D2; 
}

tr:nth-child(odd) {
    background-color: #F4FDF2; 
}

.specs {
    font-style: italic;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 1.8cm;
    margin-top: 4cm;
    text-align: center;
    text-decoration: underline;
    color: #09300D; 
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.18);
}
/* Footer */
.footer {
    background: #097721e3;
    color: #dbe7ff;
    padding: 40px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: .45rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.45rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: .6rem;
    margin-right: 7px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: 0.40rem;
    color: #ffffff;
  }
.footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social .social-icons a {
    font-size: 1rem;
  }
}
}


@media (max-width: 932px) and (orientation: landscape) {
    body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 2.5px;
    object-fit: cover;
}

/* Header Section */
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
      background: #097721e3;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }

.intro-image {
  width: 100vw; /* Full width of the viewport */
  height: auto; /* Full height of the viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes sure the image covers the container without distortion */
}

@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@1,700&display=swap');

.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 15px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 32.5px;
    height: 32.5px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  .back-button:before,
  .back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 3.5px;
  }
  
  .back-button:before {
    border: 2px solid #be1b1b;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .back-button:after {
    border: 2px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 3;
    left: 4;
  }
  
  .button-elem {
    display: block;
    width: 10px;
    height: 10px;
    margin: 8.6px 9px 0 9px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }

/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}

/* Scrollable Content */
.content {
    padding: 10px;
    text-align: left;
    max-width: 400px;
    margin: auto;
    overflow-y: auto;
}
.content p {
    font-family: 'Bahnschrift', sans-serif; /* Use Josefin Sans */
    font-size: 9px; /* Adjust text size */
    font-weight: 400; /* Regular weight */
    line-height: 1.6; /* Improves readability */
    color: #000; /* Adjust if needed */
}
/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 4px;
}

/* Gallery Title */
.gallery-title {
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0;
}


.gallery img {
    width: 100%; /* Make the image fill the container */
    height: 100%; /* Ensure it covers the full height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
.img-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
/* Fullscreen Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.modal img {
    max-width: 40%;
    max-height: 40%;
}

.color-selection {
    text-align: center;
    margin-top: 12.5px;
}

.color-selection h2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 10px;
}

.color-selection img {
    width: 50%;
    transition: opacity 0.3s ease-in-out;
}

.color-options {
    display: flex;
    justify-content: center; /* Center images */
    align-items: center; /* Align them properly */
    gap: 15px; /* Adjust spacing between images */
    margin-top: 5px;
}

.color-img {
    width: 50px !important; /* Adjust the size */
    height: auto !important;
    object-fit: contain;
    cursor: pointer;
    display: block;
    border: 2px solid transparent;
    transition: transform 0.2s ease, border 0.2s ease;
}


.color-img:hover, .color-img.active {
    transform: scale(1.1);
    border: 2px solid #fff;
}
/* Main Container */
.specs-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 550px;
    margin: 20px auto;
    padding: 10px;
}

/* Sidebar */
.sidebar {
    position: block;
    top: 50px;
    margin-top: 1.20%;
    width: 125px;
    background: #D9E8D4;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar button {
    background: linear-gradient(90deg, #1E6F2D, #48A14C);

    height: 22.5px;
    color: #F0F8EC; 
    padding: 5px;
    border: none;
    border-radius: 2.5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 8.5px;
    transition: 0.3s;
}

.sidebar button:hover {
    background: #2d7a12; 
    transform: scale(1.05);
}

.specs-section {
    flex: 1;
    text-align: center;
}

.spec-section {
    display: none;
    background: radial-gradient(circle, #EAFBEA 10%, #F9FFF5 90%); /* Aetherial Green Light */
    padding: 15px;
    border-radius: 10px;
    margin: 7.5px 0;
    color: #0D3310; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    border-left: 5px solid #0B3D12; 
    animation: celestialPulse 7s infinite alternate ease-in-out;
}

@keyframes celestialPulse {
    0% {
        box-shadow: 0px 0px 12px rgba(11, 61, 18, 0.4);
    }
    50% {
        box-shadow: 0px 0px 30px rgba(11, 61, 18, 0.6);
    }
    100% {
        box-shadow: 0px 0px 12px rgba(11, 61, 18, 0.4);
    }
}

.spec-section h3 {
    color: #09300D; 
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-shadow: 0px 1.5px 2.5px rgba(0, 0, 0, 0.15);
    margin-bottom: 9px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    border-radius: 7px;
    overflow: hidden;
}

th {
    background: linear-gradient(90deg, #1E6F2D, #48A14C);

    color: #FFFFFF; 
    padding: 9px;
    text-align: left;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
}

td {
    padding: 9px;
    text-align: left;
    border-bottom: 1px solid #B0E0A8; 
    font-size: 8.5px;
}

tr:nth-child(even) {
    background-color: #D8F5D2; 
}

tr:nth-child(odd) {
    background-color: #F4FDF2; 
}

.specs {
    font-style: italic;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 1.8cm;
    margin-top: 4cm;
    text-align: center;
    text-decoration: underline;
    color: #09300D; 
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.18);
}
/* Footer */
.footer {
    background: #097721e3;
    color: #dbe7ff;
    padding: 40px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: .45rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.45rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: .6rem;
    margin-right: 7px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: 0.40rem;
    color: #ffffff;
  }
.footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social .social-icons a {
    font-size: 1rem;
  }
}
}
