@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bree+Serif&family=Gruppo&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

body {
  width: 100%;
  background-color: #fff;
  color: #222;
}

h1 {
  font-size: 50px;
  line-height: 64px;
}

h2 {
  font-size: 46px;
  line-height: 54px;
}

h4 {
  font-size: 20px;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

/* Header */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #E3E6F3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

#navbar {
  display: flex;
  list-style: none;
}

#navbar li {
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

/* Hero Section */
#hero {
  background-image: url("img/image7.jpg");
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#hero {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1));
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-text {
  flex: 1;
  z-index: 2;
}

.hero-image {
  flex: 1;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 30px;
  }
}

#hero h1 {
  color: #088178;
}

.hero-btn {
  background-color: #088178;
  color: white;
  padding: 14px 30px;
  font-size: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #066d66;
}

/* Feature Box */
#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    cursor: pointer;
}


.fe-box {
  width: 180px;       /* You can adjust this */
  height: 200px;      /* Adjust height as needed */
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.fe-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fe-box img {
  max-width: 100px;
  margin-bottom: 10px;
}

.fe-box h6 {
  font-size: 14px;
  color: #333;
}

#feature .fe-box h6 {
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}

.fa-cart-shopping {
  font-size: 24px;
  color: #088178;
  margin-left: 10px;
  cursor: pointer;
}

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.02 ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#product1 .pro .cart { 
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6Ea;
    font-weight: 500;
    color: #088178;
}
.cart {
  color: #ff523b;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.cart:hover {
  color: #e14a33;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('img/universe.jpg');
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fff;
  font-size: 22px; /* increased from 16px */
}

#banner h2 {
  color: #fff;
  font-size: 42px; /* increased from 30px */
  padding: 10px 0;
}

#banner h2 span {
  color: #ef3636;
}
#banner h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding:  11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

#banner button:hover {
  background: #088178;
  color: #fff;
}

/* Seksioni i produkteve */
#product1 {
  padding: 60px 40px;
  text-align: center;
}

#product1 h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

#product1 p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Kontejneri i produkteve */
#product1 .pro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Produkti individual */
#product1 .pro {
  width: calc(25% - 22.5px); /* 4 produkte në rresht me distanca mes tyre */
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  position: relative;
}

#product1 .pro:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#product1 .pro img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

#product1 .des {
  padding-top: 12px;
  text-align: left;
}

#product1 .des span {
  color: #777;
  font-size: 14px;
}

#product1 .des h5 {
  font-size: 17px;
  margin: 6px 0;
}

#product1 .star {
  color: #f0c040;
  font-size: 14px;
}

#product1 .des h4 {
  color: #ff523b;
  font-size: 20px;
  margin-top: 10px;
}

#product1 .cart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #ff523b;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s;
}

#product1 .cart:hover {
  background: #e14a33;
}

/* Për pajisje më të vogla */
@media (max-width: 992px) {
  #product1 .pro {
    width: calc(50% - 15px); /* 2 në një rresht */
  }
}

@media (max-width: 600px) {
  #product1 .pro {
    width: 100%; /* 1 në rresht */
  }
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url('img/shopping.jpg');
  width: 650px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 30px;
}
#sm-banner .banner-box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url('img/shoes.jpg');
  width: 650px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 30px;
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background: #088178;
  border: 1px solid #088178;
}
#sm-banner .banner-box2:hover button {
  background: #088178;
  border: 1px solid #088178;
}

#banner3 { 
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url('img/glassess.jpg');
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
  background-image: url("img/tshirt.jpg")
}

#banner3 .banner-box3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
  background-image: url("img/shoes1.jpg")
}

#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("img/darkblue.png");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter span {
  color: #ffbd27;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
}

/* Newsletter Section Styling */
#newsletter {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

#newsletter .form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

#newsletter input[type="email"],
#newsletter input[type="text"] {
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  outline: none;
  flex: 1;
  min-width: 240px;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#newsletter .normal {
  padding: 14px 28px;
  background-color: #088178;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#newsletter .normal:hover {
  background-color: #b83b36;
}
#newsletter .form {
  margin-right: 40px; /* Adjust as needed */
}
#newsletter p {
  margin-left: 40px; /* adjust value as needed */
}

/* Footer Base Styling */
.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 40px;
  font-family: 'Raleway', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .col {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer img {
  width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Makes logo white */
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p, .footer a {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ec544e;
}

.footer .follow .icon {
  margin-top: 10px;
}

.footer .follow .icon i {
  font-size: 18px;
  margin-right: 10px;
  background: #ec544e;
  padding: 8px;
  border-radius: 50%;
  color: white;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.footer .follow .icon i:hover {
  background: #b83b36;
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Root Variables */
:root {
  --primary-color: #ec544e;
  --text-dark: #333;
  --text-light: #888;
  --bg-dark: #111;
  --bg-light: #f5f5f5;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #fff;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  max-height: 80px;
}

#navbar {
  display: flex;
  list-style: none;
  gap: 30px;
}

#navbar li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

#navbar li a:hover,
#navbar li a.active {
  color: var(--primary-color);
}

/* Hero */
#hero {
  background: url('img/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

#hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-btn {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  margin-top: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-btn:hover {
  background: #b83b36;
}

/* Features */
.section-p1 {
  padding: 60px 80px;
}

#feature {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.fe-box {
  background: var(--bg-light);
  flex: 1 1 150px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.fe-box:hover {
  transform: translateY(-5px);
}

.fe-box img {
  width: 80px;
  margin-bottom: 15px;
}

/* Product Cards */
.pro-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.pro {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #eee;
  width: calc(25% - 20px);
  transition: var(--transition);
  position: relative;
}

.pro img {
  width: 100%;
  border-radius: 10px;
}

.pro:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pro .des span {
  font-size: 14px;
  color: var(--text-light);
}

.pro .des h5 {
  margin: 5px 0;
  font-size: 16px;
}

.star {
  color: gold;
}

.cart {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 10px;
  border-radius: 50%;
  transition: var(--transition);
}

.cart:hover {
  background: #b83b36;
}

/* Banner Section */
#banner, #sm-banner, #banner3 {
  background: var(--bg-dark);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

#banner h2 span {
  color: var(--primary-color);
}

button.normal, button.white {
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

button.normal {
  background: var(--primary-color);
  color: white;
}

button.white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

button.normal:hover {
  background: #b83b36;
}

button.white:hover {
  background: white;
  color: var(--bg-dark);
}

/* Newsletter */
#newsletter {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

#newsletter .newstext h4 {
  font-size: 22px;
}

#newsletter .newstext p span {
  color: var(--primary-color);
}

#newsletter .form {
  display: flex;
  gap: 10px;
}

#newsletter input {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  outline: none;
}

#newsletter .normal {
  border-radius: 25px;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: auto;
}

.footer .col {
  flex: 1 1 300px;
}

.footer img {
  width: 150px;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #aaa;
  line-height: 2;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer .icon i {
  margin-right: 10px;
  background: var(--primary-color);
  padding: 10px;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.footer .icon i:hover {
  background: #b83b36;
}

/* Responsive */
@media (max-width: 768px) {
  #header {
    flex-direction: column;
  }

  #navbar {
    flex-direction: column;
    gap: 10px;
  }

  .pro {
    width: 48%;
  }

  #newsletter {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}

