@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');


body{
    margin: 0;
    padding: 0;
    background-color: #000000;
    scroll-behavior: smooth;
}

.container{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* == Nav Bar === */

.navbar * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  top: 0;
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 100 2rem;
  max-width: 1600px;
}

.navbar-logo {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu li a {
  font-family: "Jost", serif;
  text-shadow: -2px -2px 10px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 3px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-container .navbar-menu li a.active {
  color: #162530;
  background: radial-gradient(#ffd700, #f5c518);
}

.navbar-container .navbar-menu li a:hover {
  opacity: 0.6;
  color: #162530;
  background: radial-gradient(#ffd700, #f5c518);
}

.navbar-toggle {
  display: none;
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 880px) {
  .navbar {
    backdrop-filter: none;
  }
  .navbar-container .navbar-menu {
    display: none;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem !important;
    position: absolute;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4.5px);
  }

  .navbar-container .navbar-menu.active {
    display: flex;
  }

  .navbar-toggle {
    display: block;
    z-index: 999;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 1 rem;
  }

  .navbar-logo {
    font-size: 1.7rem;
  }

  .navbar-container .navbar-menu li a {
    font-size: 1.2rem;
    padding: 3px 15px;
  }
}

/* === Done Nav Bar === */

/* === Start Hero Section === */
.hero-section{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-vid{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video{
  opacity: 0.8;
    width: 100%;
    height: 110%;
    border-image: fill 0 linear-gradient(#0003, #000);
}

@media screen and (max-width: 768px) {
  .hero-video {
    transform-origin: center center;
    object-fit: cover;
  }

  .hero-vid {
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 100vh;
  }
}

.hero-info{
    z-index: 1;
    position: absolute;
    top: 80px;
    left: 50px;
}

.hero-info h1{
    font-size: 90px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 38px;
    margin-bottom: 20px;
}

.hero-info h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-info p {
  font-size: 16px;
  font-style: italic;
  color: white;
  text-shadow: -2px -2px 10px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  margin: 10px 0px;
}

.hero-info button{
    background-color: #edff66;
    border: 2px solid #edff66;
    padding: 10px 40px;
    border-radius: 20px;
    cursor: pointer;
    color: black;
    transition: 0.3s;
}

.hero-info button:hover{
    background-color: transparent;
    color: white;
    box-shadow: 0 0 15px #edff66;
}

.about-section{
    width: 100%;
    height: 100%;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
/* === End Hero Section === */

/* === Start Text Section === */
.about-section h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-size: 100px;
    max-width: 1150px;
    text-align: center;
    margin-bottom: 100px;
    text-transform: uppercase;
    background: linear-gradient(to right,
  #ffd700, /* classic gold */
  #f5c518, /* warm gold */
  #ffcc70, /* soft amber */
  #d4af37, /* metallic gold */
  #c0a060, /* antique gold */
  #bfa5a0, /* rose gold */
  #00ced1, /* turquoise */
  #e5e4e2, /* platinum */
  #f0e68c  /* light gold */
);

    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to{
        background-position: 200%;
    }
}
/* === End Text Section === */

/* ===== Start Photo Grid ====== */

:root {
  --primary-subdued: hsl(254, 88%, 90%);
  --primary-base: hsl(256, 67%, 59%);
  --accent-subdued: hsl(31, 66%, 93%);
  --accent-base: hsl(39, 100%, 71%);
  --white: hsl(0, 0%, 100%);
  --off-white: hsl(0, 0%, 96%);
  --black: hsl(0, 0%, 7%);

  --fs-reg: 1.25rem;
  --fs-md: 1.7rem;
  --fs-lg: 3rem;
  
}

@layer reset {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  figure {
    margin: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 500;
  }

  img {
    max-width: 100%;
    display: block;
  }
}

@layer base {
  html {
    font-family: "DM Sans", sans-serif;
    line-height: 1.3;
  }

  body {
    margin: 32px;
    color: var(--black);
    font-size: var(--fs-reg);
    background: var(--off-white);
  }

  h1,
  h2 {
    color: var(--heading-foreground, inherit);
    font-size: var(--heading-font-size, var(--fs-md));
    line-height: 1.1;
    text-wrap: balance;

    span {
      display: var(--heading-span-display, inline);
      color: var(--heading-span-foreground, var(--black));
      font-size: var(--heading-span-font-size, inherit);
      font-style: var(--heading-span-style, normal);
    }
  }
}

@layer layout {
  .bento-grid {
    display: grid;
    gap: 24px;
    max-inline-size: 1200px;
    margin-inline: auto;
    grid-template-areas:
      'one'
      'two'
      'three'
      'four'
      'five'
      'six'
      'seven'
      'eight';
  }

  .bento-grid>* {
    color: var(--bento-card-foreground, var(--black));
    background-color: var(--bento-card-surface, var(--white));
    padding: var(--bento-card-padding, 32px);
    border-radius: var(--bento-card-border-radius, 21px);

    overflow: clip;

    display: grid;
    gap: var(--bento-card-gap, 32px);
    align-content: var(--bento-card-vertical-alignment, start);
    align-items: var(--bento-card-vertical-alignment, start);
    justify-items: var(--bento-card-horizontal-alignment, start);
    text-align: var(--bento-card-horizontal-alignment, start);
  }

  .bento-grid img {
    max-width: var(--bento-card-image-width, 100%);
    width: var(--bento-card-image-width, 100%);
    order: var(--bento-card-image-order);
  }

  .bento-grid> :nth-child(1) {
    --heading-font-size: var(--fs-xl);
    --heading-span-foreground: var(--accent-base);
    --bento-card-foreground: var(--white);
    --bento-card-surface: var(--primary-base);
    --bento-card-padding: 48px;
    --bento-card-horizontal-alignment: center;
    --bento-card-image-width: 70%;
    --bento-card-gap: 16px;

    grid-area: one;
  }

  .bento-grid> :nth-child(2) {
    --bento-card-image-order: -1;

    grid-area: two;

    /* fixing shadow issue in asset */
    >img {
      filter: drop-shadow(0 0 1rem hsl(0 0% 0% / .25));
      border-radius: 100vw;
      /* box-shadow: 0 0 1rem hsl(0 0% 0%); */
    }
  }

  .bento-grid> :nth-child(3) {
    --bento-card-surface: var(--accent-base);

    grid-area: three;


    >img {
      --bento-card-image-width: 75%;

      margin-bottom: -55px;
    }
  }

  .bento-grid> :nth-child(4) {
    --bento-card-horizontal-alignment: center;
    --bento-card-surface: var(--primary-subdued);

    grid-area: four;

  }

  .bento-grid> :nth-child(5) {
    --bento-card-horizontal-alignment: center;
    --bento-card-foreground: var(--white);
    --bento-card-surface: var(--primary-base);
    --bento-card-image-width: 75%;
    --bento-card-image-order: -1;

    grid-area: five;

  }

  .bento-grid> :nth-child(6) {
    --heading-font-size: var(--fs-xl);
    --heading-span-display: block;
    --heading-span-font-size: var(--fs-reg);

    --bento-card-image-width: 60%;

    grid-area: six;

  }

  .bento-grid> :nth-child(7) {
    --heading-span-foreground: var(--primary-base);
    --heading-span-style: italic;

    --bento-card-surface: var(--accent-subdued);
    --bento-card-image-width: 60%;


    grid-area: seven;

  }

  .bento-grid> :nth-child(8) {
    --bento-card-surface: var(--accent-base);
    --bento-card-image-width: 60%;

    grid-area: eight;

  }

  @media (max-width: 660px) {
    :root {
      --fs-reg: 1rem;
      --fs-md: 1.5rem;
      --fs-lg: 2rem;
      --fs-xl: 2.5rem;
    }

    body {
      margin: 16px;
    }

    .bento-grid {
      gap: 16px;
    }

    .bento-grid>* {
      padding: 24px;
      border-radius: 12px;
      gap: 24px;
    }

    .bento-grid> :nth-child(1) {
      --bento-card-padding: 32px;
      --bento-card-gap: 8px;
      --bento-card-image-width: 100%;
    }

    .bento-grid> :nth-child(3) {
      >img {
        --bento-card-image-width: 100%;
        margin-bottom: -30px;
      }
    }

    .bento-grid> :nth-child(4) {
      --bento-card-image-width: 100%;
    }

    .bento-grid> :nth-child(5) {
      --bento-card-image-width: 100%;
      --bento-card-gap: 8px;
    }

    .bento-grid> :nth-child(6) {
      --bento-card-image-width: 100%;
    }

    .bento-grid> :nth-child(7) {
      --bento-card-image-width: 100%;
    }

    .bento-grid> :nth-child(8) {
      --bento-card-image-width: 100%;
    }
  }

  @media (min-width: 661px) {
    .bento-grid {
      grid-template-areas:
        "one one"
        "two three"
        "four six"
        "four seven"
        "five eight";
    }
  }

  @media (min-width: 300px) {
    .bento-grid {
      grid-template-areas:
        "one one"
        "two three"
        "four six"
        "four seven"
        "five eight";
    }
  }

  @media (min-width: 961px) {
    .bento-grid {
      grid-template-areas:
        "seven one one four"
        "seven two three four"
        "eight two three four"
        "eight six five five";
    }

    .bento-grid> :nth-child(1) {
      --bento-card-image-width: 45%;
    }

    .bento-grid> :nth-child(2) {
      --bento-card-image-width: 150%;
    }

    .bento-grid> :nth-child(3) {
      >img {
        --bento-card-image-width: 100%;
        margin-bottom: -125px;
      }
    }

    .bento-grid> :nth-child(4) {
      --bento-card-image-width: 180%;
      --bento-card-horizontal-alignment: start;
      --bento-card-vertical-alignment: center;
    }

    .bento-grid> :nth-child(5) {
      --bento-card-gap: 16px;
      --bento-card-image-width: 100%;
      --bento-card-vertical-alignment: center;
      --bento-card-horizontal-alignment: start;
      grid-template-columns: 1fr 1fr;
    }

    .bento-grid> :nth-child(6) {
      --bento-card-image-width: 80%;
    }

    .bento-grid> :nth-child(7) {
      --bento-card-image-width: 100%;
      --bento-card-vertical-alignment: center;
    }

    .bento-grid> :nth-child(8) {
      --bento-card-image-width: 105%;
      --bento-card-vertical-alignment: center;
    }
  }
}

@layer utilities {
  .visually-first {
    order: -1;
  }
}
/* ===== End Photo Grid ======= */

/* ===== Start Content Section ======= */

.content {
    padding: 100px 0 10px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    z-index: -1;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0,0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.content-content {
    direction: ltr;
    display: grid;
    margin-right: 20px;
    margin-left: 20px;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: gray;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    animation: fadeInDown 0.8x ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.content-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0,2s both;
}

.content-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-accent {
    font-family: 'Playfair DIsplay', serif;
    font-style: italic;
    color: var(--primary-color);
}

.title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    color: gray;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.content-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.content-image {
    animation: fadeInRight 1s ease-out 0.4s both;
    position: relative;
}

.content-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }

    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.content-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.property-card-float {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    animation: slide-in-bottom 1s ease-out 1.2s both;
}

@keyframes slide-in-bottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card-icon {
    font-size: 32px;
}

.property-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin-bottom: 2px;
}

.property-card-content p {
    font-size: 18px;
    font-weight: 800;
    color: rgb(58, 58, 151);
}

.property-card-badge {
    position: absolute;
    border-radius: 8px;
    top: -12px;
    right: -12px;
    background: rgb(189, 141, 51);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: #141414;
}

/* Part 2 & Part 3 Layout */

/* --- New Reusable Layout Classes for Desktop/Laptop View --- */

/* Layout 1: Image Left (1.3fr) | Text Right (1.7fr) - For Part 2 */
.layout-image-left {
    display: grid;
    /* Image (1.3fr) | Text (1.7fr) */
    grid-template-columns: 1fr 2fr !important;
    /* Force Image to the first column, Text to the second */
    grid-template-areas: "image text" !important;
}

/* Layout 2: Text Left (1.7fr) | Image Right (1.3fr) - For Part 3 */
.layout-text-left {
    display: grid;
    /* Text (1.7fr) | Image (1.3fr) */
    grid-template-columns: 2fr 1fr !important;
    /* Force Text to the first column, Image to the second */
    grid-template-areas: "text image" !important;
}


/* --- New CSS for 2/3 Text and 1/3 Image Layout on Small Screens --- */
@media (max-width: 768px) {
    /* ... (previous unchanged styles for .content, .content-content, .content-text, .content-badge, .content-title) ... */

    /* 1. Define the 2/3 (Text) to 1/3 (Image) split */
    .content-content {
        grid-template-columns: 2fr 1fr; /* Keep it 2/3 and 1/3 */
        gap: 15px;
        margin-right: 0px;
        align-items: flex-start;
    }

    /* 2. Adjust overall padding and container settings */
    .content {
        padding: 40px 0;
        min-height: auto;
    }

    /* 3. Text Content Adjustments (Reduced but still readable) */
    .content-text {
        padding-left: 10px;
    }

    .content-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 10px;
        box-shadow: none;
    }

    .content-title {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-description {
        display: block;
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 5px;
        max-width: 100%;
    }

    /* 4. Image Content Adjustments (Significantly reduced) */
    .content-image {
        padding-right: 10px;
        padding-left: 10px;
        min-width: 0;
    }
    
    .content-image-wrapper {
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        animation: none;
    }
    
    .content-image-wrapper img {
        width: 100%;
        height: 70%;
    }

    /* 5. REDUCED PROPERTY CARD FLOAT AREA */
    .property-card-float {
        bottom: 5px; /* Move closer to the bottom edge */
        right: 5px; /* Move closer to the right edge */
        padding: 5px; /* Reduce internal padding */
        gap: 4px; /* Reduce gap between icon and text */
        box-shadow: var(--shadow-sm); /* Use a smaller shadow */
        
        /* KEY CHANGE: Scale down the entire element to 60% of its original size */
        transform: scale(0.6); 
        /* Set transform origin to bottom right so it scales inward from that corner */
        transform-origin: bottom right; 
        /* Ensure it remains on top of the image */
        z-index: 10; 
    }

    /* The individual elements within the card will automatically scale */
    /* If you need even more fine-grained control, you can adjust their font sizes */
    
    .property-card-icon {
        font-size: 10px; 
    }
    .property-card-content h4 {
        font-size: 5px;
    }
    .property-card-content p {
        font-size: 7px;
    }
    

    /* Hide the badge entirely, it's too small to be useful at this scale */
    .property-card-badge {
        display: none; 
    }
}

/* --- Specific adjustment for the smallest screen size (375px) --- */
@media (max-width: 400px) {
    .content-title {
        font-size: 22px;
    }
    .hero-description {
        font-size: 10px;
    }
    /* If the scaled card is still too big, you might consider hiding it completely */
    /*
    .property-card-float {
        display: none;
    }
    */
}

/* ===== End Content Section ======= */

/* ====== Start Price Card ====== */

/* --- Global Container --- */
.gs-card-container {
  font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Keeps original settings: allows wrapping for vertical stack on small screens */
    flex-wrap: wrap; 
    padding: 1em;
    max-width: 1100px;
    gap: 2em;
    margin: 30px auto; 
    min-height: 100vh;
}

.gs-card-container * {
    box-sizing: border-box;
}

/* --- Individual Card Item (Original Dimensions Restored) --- */
.gs-card-item {
    /* **Original Width** */
    width: 17em; 
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    /* **Original Margin** */
    margin: 2em; 
}

/* Image positioning relative to the card (Original Dimensions Restored) */
.gs-card-item img {
    /* **Original Width** */
    width: 12em; 
    position: absolute;
    /* **Original Positioning** */
    top: -4em; 
    right: -3em;
    filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.5));
}

/* Content Area below the banner (Original Settings) */
.gs-card-content {
    padding: 1em;
}

/* Product Title inside the banner (Original Settings) */
.gs-card-item h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    margin: 0 0 0 0.8em;
}

.gs-card-item h5 {
    font-weight: bold;
}

/* Banner/Header Area (Original Dimensions Restored) */
.gs-card-banner {
    /* **Original Height** */
    height: 15em; 
    /* Default Red Gradient */
    background: linear-gradient(90deg, #fb3854 0%, #901026 100%);
    /* **Original Padding** */
    padding-top: 3em; 
    border-radius: 10px 10px 50% 50%;
}

/* Details List (Original Settings) */
.gs-card-details small {
    display: block;
    line-height: 24px;
    letter-spacing: 1px;
    font-size: 0.7em;
}

/* Add to Cart Button (Original Settings) */
.gs-card-cart-btn {
    /* Default Red Gradient */
    background: linear-gradient(90deg, #fb3854 0%, #901026 100%);
    padding: 1em 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 2em;
    color: #fff;
    border: none;
    margin: 0 auto;
    font-weight: 700;
    box-shadow: 0px 5px 15px rgba(251, 56, 84, 0.7);
    cursor: pointer;
}

/* Pop-out effect for tilt library (Original Settings) */
.gs-card-pop {
    transform: translateZ(20px);
}

/* --- Specific Styles for Second Card (Nike LunarChange - Black) --- */
.gs-card-item:nth-child(2) .gs-card-banner,
.gs-card-item:nth-child(2) .gs-card-cart-btn {
    /* Black Gradient */
    background: linear-gradient(90deg, #333 0%, #111 100%);
}

.gs-card-item:nth-child(2) img {
    /* **Original Positioning** */
    top: -2.4em;
    right: -3em; 
}

.gs-card-item:nth-child(2) .gs-card-cart-btn {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.7);
}


/* ====== End Price Card ====== */

/* ====== Footer ====== */

.foot-content{
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 50vh;
}

footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #3586ff;
  
  flex-direction: column;
}

footer .social-icons, footer .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  margin-left: -65px;
  flex-wrap: wrap;
}

footer .social-icons li, footer .menu li {
  list-style: none;
}

footer .social-icons li a{
  font-size: 2em;
  color: #141414;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

footer .social-icons li a:hover {
  transform: translateY(-10px);
}

footer .menu nav a{
  font-style:  serif;
  text-transform: capitalize;
  font-size: 1.2em;
  color: black;
  padding: 0 10px;
  margin: 0 10px;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.5s;
  position: relative;
}

footer .menu nav a::after{
  content: "";
  position: absolute;
  bottom: -5px;
  height: 4px;
  border-radius: 20px;
  width: 100%;
  left: 0;
  background-color: #ffd700;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
  transform: scaleX(0);
}

footer .menu nav a:hover::after{
  opacity: 1;
  transform: scaleX(1);
}

footer p{
  color: #141414;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
  opacity: 0.75;
}

footer .wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(img/wave.webp);
  background-size: 1000px 100px;
}

footer .wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 0;
  animation: animateWave-02 4s linear infinite;
}

footer .wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWave-02 3s linear infinite;
}

footer .wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave-02 3s linear infinite;
}

@keyframes animateWave {
  0% {background-position-x: 1000px;}
  100% {background-position-x: 0px;}
}

@keyframes animateWave-02 {
  0% {background-position-x: 0px;}
  100% {background-position-x: 1000px;}
}


/* ====== Footer Done ====== */

/* ADJUST WITH ALL DEVICE */
@media screen and (max-width: 650px){
    header{
        padding: 0 10px;
    }
    .head-left button{
        display: none;
    }
    .head-right a{
        font-size: 12px;
        padding: 0 5px;
    }
    .hero-info{
        left: 5%;
    }
    .hero-section h1{
        font-size: 47px;
    }
    .about-section{
        margin: 0;
    }
    .about-section h1{
        font-size: 54px;
    }
}


/* BLUR EFFECT ANIMATION */

.autoBlur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}

@keyframes autoBlurAnimation{
    0%{
        filter: blur(40px);
    }
    40%,60%{
        filter: blur(0);
        transform: translateY(0px);
        opacity: 1;
    }
    100%{
        filter: blur(40px);
        transform: translateY(-200px);
        opacity: 0;
    }
}

/* TAKE FULL SCREEN ANIMATION */ 
.autoTakeFull{ 
    animation: autoTakeFullAnimation both; 
    animation-timeline: view(70% 65%); 
} 
 
@keyframes autoTakeFullAnimation{ 
    to{ 
        width: 100%; 
        height: 100vh; 
        border-radius: 0; 
        margin-bottom: 100px; 
    } 
} 
 
/* AUTO DISPLAY ANIMATION */ 
.autoDisplay{ 
    animation: autoDisplayAnimation both; 
    animation-timeline: view(70% 5%); 
} 
 
@keyframes autoDisplayAnimation{ 
    from{ 
        opacity: 0; 
        transform: translateY(200px) scale(0.3); 
    } to{ 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    } 
}

