/*begin algemeene settings*/

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
li {
    margin: 0%;
    padding: 0%;
}

ul.navlist {
    list-style-type: none;
}

h2 {
    display: inline-block;
}


/*start header part same across al pages*/

.logo {
  width: 50%;         /* scales with screen */
  max-width: 10rem;    /* prevents it from getting too big */
  min-width: 4rem;    /* keeps it readable on tiny screens */
  height: auto;
  border-radius: 0.5rem;
}

.logo-container {
  margin-left: 4rem; /* space between logo and nav */
}

/* Navbar container */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px); 
  width: 100%;
  padding: 0.5rem 1rem;

  position: fixed;   /* keeps it fixed on screen */
  top: 0;            /* stick to very top */
  left: 0;           /* align with left edge */
  z-index: 1000;     /* stay above other elements */
}


/* Center nav links */
.navlist {
  display: flex;
  flex-wrap: nowrap; 
  align-items: center;
  justify-content: center;
  gap: 1vw; /* space between items */
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 4rem;
}

/* Items */
.navitem {
  color: #fff;
}

.navitem a {
  color: inherit;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1vw;
}

/* Hover underline */
.navitem a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: rgb(90, 178, 250);
  transition: width 0.3s ease;
}

.navitem a:hover::after {
  width: 100%;
}

.navitem a:hover {
  color: rgb(90, 178, 250);
}


ul.navlist {
    list-style-type: none;
}
/* Dropdown container */
.navitem.dropdown {
    position: relative;
    cursor: pointer;
}

/* Arrow styling */
.navitem.dropdown .arrow {
    white-space: nowrap;
    margin-left: 0.3rem;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.navitem.dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown menu hidden by default */
.dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
    min-width: 200px;
    border-radius: 0.3rem;
    z-index: 100;
    margin-top: 2rem;
}

/* Dropdown menu items */
.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.dropdown-menu li a:hover {
    background-color: rgba(250, 90, 90, 0.0);
}

/* Show dropdown when active */
.navitem.dropdown.active .dropdown-menu {
    display: block;
}

.discord-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* space between | and logo */
    font-size: 1.7rem;
}

.discord-item .separator {
    color: #fff;           /* same color as navbar text */
    margin-right: 1rem;
    font-size: 2rem;       /* makes the separator bigger */
    line-height: 2rem;     /* makes it taller and vertically aligned */
    font-weight: bold;     /* optional, to make it more prominent */
}

.discord-logo {
    width: 90%;
    max-width: 2.2rem;       /* adjust size */
    height: auto;      /* make it square so rounding works */
    border-radius: 50%;  /* makes it circular */
    transition: transform 0.3s;
}

.discord-logo:hover {
    transform: scale(1.2); /* subtle hover effect */
}

.fivem-logo {
    width: 90%;
    max-width: 2.8rem;       /* adjust size */
    height: auto;      /* make it square so rounding works */

    transition: transform 0.3s;
}

.fivem-logo:hover {
    transform: scale(1.2); /* subtle hover effect */
}



/*end header*/

/*start index*/

/*start main part website*/
.navbar_index_banner_wrapper {
  background-image: url('../images/wallpaper1.jpg');
  background-size: cover;      /* stretch image to fill the wrapper */
  background-position: center;     /* keeps the center of the image visible */
  background-repeat: no-repeat;    /* prevent tiling */
  position: relative;              /* ensures proper stacking */
}


.index_banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding-top: 12rem;
  padding-bottom: 5rem;
  min-height: 74vh;  /* ✅ allow growing, don’t lock */
  height: auto;      /* let content decide */
}

.header-logo {
  border-radius: 5%;
  width: 100%;
  max-width: 37%;   /* prevents it from being HUGE */
  height: auto;
  object-fit: contain;
}

.index_banner h1 {
    font-family: "pricedown", sans-serif;
    font-size: 4rem;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* subtle shadow for readability */
}

.joinbuttons {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;                /* space between buttons */
    justify-content: center;  /* align buttons as a group */
    align-items: center;
    justify-self: center;     /* center inside the grid cell */
    text-align: center;       /* ensures inline elements align */
}

.joinbuttons button {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid rgb(90, 178, 250);
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;

    width: 18rem;        /* same size */
    display: flex;           /* icon + text inline */
    align-items: center;     /* vertically center */
    justify-content: center; /* keep text + icon centered */
    gap: 0.5rem;             /* space between icon and text */
}

.joinbuttons button:hover {
    background-color: rgb(90, 178, 250);
    color: #000;
    transform: scale(1.05);
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;             /* space between text and icon */
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid rgb(90, 178, 250);
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;    /* remove underline */
    transition: all 0.3s ease;
    min-width: 14rem;
}

.btn-link:hover {
    background-color: rgb(90, 178, 250);
    color: #000;
    transform: scale(1.05);
}

.btn-icon {
    height: 1em;   /* same height as text */
    width: auto;   /* maintain aspect ratio */
    display: inline-block;
    vertical-align: middle;
}

.v-arrow-wrapper {
    display: block;
    width: 3rem;          /* bigger clickable area */
    height: 3rem;
    margin: 2rem auto;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.v-arrow-wrapper:hover {
    transform: translateY(5px); /* straight down on hover */
}

.v-arrow {
    display: block;
    width: 3rem;             /* length of arrow */
    height: 3rem;
    border-left: 0.7rem solid white;  /* thicker arrow */
    border-bottom: 0.7rem solid white;
    transform: rotate(-45deg); /* V pointing down */
    transform-origin: center;
}


main.index {
    background-image: url(../images/blackbackground.jpg);
}

.welcome {
    padding-top: 3vw;
    text-align: center;
    color: white;
}

.welcome h2 {
    font-family: "pricedown", sans-serif;
    font-size: 3rem;
}

.welcome p {
    font-size: 1.5rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);  /* 2 rows */
    gap: 3vw;                             /* space between items */
    justify-items: center;                 /* center horizontally */
    align-items: center;                   /* center vertically */
    margin: 5vw 10vw;
    text-align: center;
    color: white;
}

.value_item {
    display: grid;
    grid-template-rows: auto auto 1fr; /* image, title, paragraph */
    align-items: start;               /* aligns each row content to top */
    justify-items: center;            /* center horizontally */
    text-align: center;
    height: 100%;                     /* ensures same container height for all */
}

.value_item img {
    width: 10rem;      /* fixed size for all images */
    height: auto;
}

.value_item h3 {
    font-size: 2rem;
    margin: 1rem 0 1rem 0;
    font-family: "Oswald", sans-serif;
}

.value_item p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.value_images {
    width: 10rem;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.whyjoin {
    background-image: url('../images/white_background.jpg');
    background-size: cover;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    color: rgb(0, 0, 0);
}

.whyjoin h2 {
    font-family: "pricedown", sans-serif;
    font-size: 4rem;
}

.whyjoin p {
    font-size: 2rem;
    line-height: 1.5;
}

.extra_values {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 5rem;                             /* space between items */
    justify-items: center;                 /* center horizontally */
    align-items: start;                   /* center vertically */
    margin: 4rem 10rem;
    text-align: center;
    padding-left: 0rem;
    padding-right: 0rem;
    text-align: left;
}

.extra_value_item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0.5rem 1rem;
    align-items: start; /* ensures image + h3 align at top */
}

.extra_value_item img {
    grid-row: 1 / 2; /* only first row */
    grid-column: 1 / 2;
    width: 7rem;   /* small icon */
    height: auto;
}

.extra_value_item h3 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    font-size: 1.4rem;
    margin: 0;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    align-self: center;
    
}

.extra_value_item p {
    grid-row: 2 / 3;
    grid-column: 1 / 3; /* span full width */
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

/* Einde index*/
/*Start rules page*/

.rules_navbar_wrapper {
  background-image: url('../images/wallpaper1.jpg');
  background-size: cover;      /* stretch image to fill the wrapper */
  background-position: center;     /* keeps the center of the image visible */
  background-repeat: no-repeat;    /* prevent tiling */
  position: relative;              /* ensures proper stacking */
}



.rules_banner {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering (if you give the section a height) */
  width: 100%;
  padding: 2rem 0;         /* optional spacing above and below */
  text-align: center;      /* fallback for inline elements */
}

.rules_banner .rules-logo {
  padding-top: 8rem;
  padding-bottom: 4rem;
  width: 100%;
  max-width: 20%;   /* prevents it from being HUGE */
  height: auto;
  object-fit: contain;
}

.rules_main {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    color: rgb(0, 0, 0);
}

.rules_main h2 {
    font-family: "pricedown", sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.rules_main p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    line-height: 1.5;
}

.community_rules h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: rgb(0, 0, 0);
}

.community_rules h3 img {
  height: 3rem;       /* sets logo height */
  vertical-align: middle; /* aligns logo with text */
  margin-right: 1rem;  /* space between logo and text */
}

.community_rules {
    margin: 0rem 20rem;
    text-align: left;
    color: rgb(0, 0, 0);
}

.community_rules li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

/* End rules page */
/* Start Shop Page */

.shop_navbar_wrapper {
  background-image: url('../images/wallpaper1.jpg');
  background-size: cover;      /* stretch image to fill the wrapper */
  background-position: center;     /* keeps the center of the image visible */
  background-repeat: no-repeat;    /* prevent tiling */
  position: relative;              /* ensures proper stacking */
}

.shop_banner {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering (if you give the section a height) */
  width: 100%;
  padding: 2rem 0;         /* optional spacing above and below */
  text-align: center;      /* fallback for inline elements */
}

.shop_banner .shop-logo {
  width: 100%;
  max-width: 22.5%;   /* prevents it from being HUGE */
  height: auto;
  object-fit: contain;
}

.shop_main {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    color: rgb(0, 0, 0);
}

.shop_main h2 {
    font-family: "pricedown", sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.shop_main p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    line-height: 1.5;
}

/* Filter buttons */
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background: #f1f1f1;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  margin: 5px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active {
  background: #ff4f4f;
  color: #fff;
}

.filter-btn:hover {
  background: #ff4f4f;
  color: #fff;
}

/* Grid layout */
.row-trending-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  margin-left: 10vw;
  margin-right: 10vw;
  justify-content: center;
}

/* Item card */
.item {
  background: #cdd3d3;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Thumbnail */
.thumb {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

/* Price badge */
.price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1e90ff;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.9rem;
  display: inline-flex;
  gap: 5px; /* space between original and discounted price */
}

.price em:first-of-type {
  text-decoration: line-through;
  opacity: 0.7; /* optional: makes the old price look faded */
  font-style: normal; /* optional: remove italic if desired */
}

/* Content area */
.content {
  padding: 15px 16px 20px;
  position: relative;
}

.category {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-bottom: 6px;
}

.down-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 14px;
}

.down-content p {
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 14px;
}

/* Button */
.buy-btn {
  position: absolute;
  bottom: 15px;
  right: 16px;
  background: #f05a5a;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.buy-btn:hover {
  background: #e34a4a;
}

/* Hide animation */
.item-card.hide {
  display: none;
}

.down-content {
  position: relative;
  padding: 15px;
}

.down-content a {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #f05a5a;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.down-content a:hover {
  background: #e34a4a;
}

.down-content a i {
  font-size: 16px;
}




/* General configuration not part of any page */

@media (max-width: 1024px) {
  .values {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .values {
    grid-template-columns: 1fr;
    margin: 2rem;
    gap: 2rem;
  }
}


@font-face {
    font-family: 'Canterbury';
    src: url('../fonts/Canterbury.ttf') format('truetype')
}
@font-face {
    font-family: 'Pricedown';
    src: url('../fonts/pricedown.ttf') format('truetype')
}
@font-face {
    font-family: 'Sacrifice';
    src: url('../fonts/Sacrifice.ttf') format('truetype')
}
@font-face {
    font-family: 'OoohBaby';
    src: url('../fonts/OoohBaby-Regular.ttf') format('truetype')
}
@font-face {
    font-family: 'DMSerifText';
    src: url('../fonts/DMSerifText-Regular.ttf') format('truetype')
}
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Regular.ttf') format('truetype')
}

/*independant from pages (always same over all pages)*/

.section-divider-with-logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and lines */
  margin: 0.5rem 0 1.5rem 0; /* keep same vertical spacing */
}

.section-divider-with-logo .line {
  flex: 1;
  height: 0.2rem;
  background-color: #313131; /* matches your divider */
  border: none;
  max-width: 50%;
}

.section-divider-with-logo img {
  height: 2rem; /* adjust to your logo size */
  border-radius: 0.3rem;
}

/* ===============================
   SHOP ITEM PAGE (SINGLE ITEM)
   =============================== */

.item-page {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
}

.item-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  width: 100%;
  background: #cdd3d3;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 2rem;
}

/* Image side */
.item-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;

  min-height: 320px;      /* 👈 IMPORTANT */
  background: #bfc6c6;    /* subtle placeholder */
}

.item-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Price badge */
.item-feature-image .price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1e90ff;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 1rem;
}

/* Info side */
.item-feature-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-feature-info .category {
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.item-feature-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
}

.item-feature-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .item-feature {
    grid-template-columns: 1fr;
  }

  .item-feature-info {
    text-align: center;
    align-items: center;
  }
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  background-color: rgba(0,0,0,0.5); 
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;        /* slightly bigger padding */
  border-radius: 10px;
  text-align: center;
  max-width: 400px;     /* limits width */
  width: 90%;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

#discordInput {
  width: 100%;
  padding: 12px 10px;    /* bigger input area */
  margin: 15px 0;        /* space above/below input */
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

#paypalConfirm {
  padding: 12px 25px;    /* bigger button */
  font-size: 16px;
  margin-top: 10px;      /* space above button */
  border: none;
  border-radius: 6px;
  background-color: #0070ba;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#paypalConfirm:hover {
  background-color: #005ea6;
}

footer {
    font-size: 1rem;
    background-color: #131212;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    display:flex; 
    flex-direction:column; 
    justify-content:space-between;
}
