/* Base Styles */
:root {
  --primary-color: #f00;
  --text-color: #fff;
  --dark-overlay: rgba(0, 0, 0, 0.5);
  --button-hover: gold;
  --max-width: 1320px;
}
.bg-colour{
    background-color: #fdf7f7;
}

body {
  font-family: "Merriweather", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header & Banner Styles */
.header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.banner {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: var(--text-color);
  text-align: center;
  padding: 2rem;
}

.banner-subtitle {
  font-size: 2rem;
  margin: 0;
}

.banner-title {
  font-size: 4.5rem;
  margin: 1rem 0 0;
  line-height: 1.2;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-overlay);
  z-index: 1;
}
/* Discount Section Styles */
.discount-section {
  height: 802px;
  width: 806px;
  text-align: center;
  padding: 3rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.discount-amount {
  font-size: 3.75rem;
  color: var(--primary-color);
  font-weight: 900;
  margin: 0;
}

.discount-subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  margin: 0.5rem 0;
  letter-spacing: 1px;
}

.discount-categories {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  margin: 1rem 0 2.5rem;
}

.discount-image {
  max-width: 100%;
  height: auto;
}

/* Party Section Styles */
.party-section {
  background-image: url("../images/Vectorrr.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: var(--max-width);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-color);
  margin: 6.25rem auto;
  padding: 0 2rem;
  position: relative;
  border-radius: 10px;
}

.party-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  z-index: 1;
}

.party-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.party-content h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.party-content h1 span {
  text-transform: lowercase;
}

.party-description {
  margin: 1.25rem 0;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.join-button {
  display: inline-block;
  /* background: var(--text-color); */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}



.party-year-image {
  position: relative;
  z-index: 2;
}

.party-year-image img {
  max-width: 300px;
  height: auto;
}


/* time section  */
.time {
  background: #fff0f0;
  border-radius: 12px;
  max-width: 800px;
  margin: 3rem auto 0 auto;
  padding: 40px 32px 32px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.time-section h1 {
  font-size: 1.5rem;
  margin: 12px 0;
  color: #222;
  font-weight: 600;
}

.time-section .text {
  color: #f00;
  font-weight: 700;
}

.btn-join {
  margin-top: 2rem;
}

.btn-join button {
  background: #f00;
  color: #fff;
  border: none;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

/* Best offer section  */
.best-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 2rem 1rem;
}

.offer-part {
  flex: 1;
  text-align: left;
}

.offer-image-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.offer-image-round {
  width: 384px;
  height: 384px;
  border-radius: 50%;
  border: 8px solid #f00;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-sizing: border-box;
}

.offer-image-round img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
}

.year-part {
  flex: 1;
  text-align: right;
}

.year-part .year {
  font-size: 3rem;
  font-weight: bold;
  color: #f00;
}
.year-part img {
  width: 120px;
  height: auto;
  display: inline-block;
  margin-top: 1rem;
}
/* Sales Section Styles */
.sales {
  background: linear-gradient(90deg, #fff0f0 60%, #ffe5e5 100%);
  border-radius: 16px;
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 3rem 2rem;
  box-shadow: 0 6px 32px rgba(255, 0, 0, 0.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sales-discount h1 {
  color: #f00;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.sales-discount h2 {
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sales-discount p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sales-discount .gift-box {
  width: 180px;
  margin: 1.5rem 1rem 0 1rem;
  vertical-align: middle;
}

.sales-banner {
  background: #f00;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 1rem 2rem;
  margin: 2rem auto 1.5rem auto;
  display: inline-block;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.1);
}

.sales-discount img[alt="50% discount"] {
  width: 120px;
  margin: 1.5rem 1rem 0 1rem;
  vertical-align: middle;
}
/* portfolio section style */
.portfolio-section {
  padding: 60px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.portfolio-subtitle {
  color: red;
  font-weight: 700;
  margin: 0;
}

.portfolio-title {
  font-size: 2.5em;
  margin: 10px 0;
}

.portfolio-description {
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.portfolio-gallery img {
  width: 100%;
  border-radius: 16px;
}

/* News latter */

.news-latter {
  border-radius: 16px;
  max-width: 700px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  /* box-shadow: 0 4px 24px rgba(255,0,0,0.08); */
  text-align: center;
}

.newsletter-box .icon img {
  width: 110px;
  margin-bottom: 1rem;
}

.newsletter-box h1 {
  font-size: 2rem;
  color: #f00;
  margin-bottom: 1rem;
  font-weight: 900;
}

.newsletter-box p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-box input[type="email"] {
  padding: 0.75rem 1.5rem;
  border-radius: 24px 0 0 24px;
  border: 1px solid #f00;
  outline: none;
  font-size: 1rem;
  width: 250px;
  margin-right: -5px;
}

.subscribe-btn {
  padding: 0.75rem 3.5rem;
  border-radius: 0 24px 24px 0;
  margin-top: 20px;
  border: none;
  background: #f00;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #0a0212;
  color: white;
  padding: 40px 20px 20px;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}

.footer-left, .footer-right {
  max-width: 100%;
  padding: 0 240px ;
}

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.social-icons a img {
  width: 32px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
    padding: 0 240px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
}
