@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");

/* Global Styles */
:root {
  --Purple100: #f0daf9;
  --Purple200: #dfb8f3;
  --Purple300: #bd8bdc;
  --Purple400: #9565ba;
  --Purple500: #63378d;
  --Purple-600: #4d2879;
  --Purple-700: #391b65;
  --Purple-800: #281151;
  --Purple900: #1c0a43;
  --Yellow500: #ffd364;
  --Yellow900: #7a5113;
  --Teal500: #2f847d;
  --Teal900: #09303f;
  --yellow: #ffcc00;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
}

* {
  padding: 0%;
  margin: 0%;

  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "century gothic", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--Title-Font);
  overflow: visible;
}

a {
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-red);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--Yellow500);
  color: var(--Purple900);
  border-radius: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--Teal500);
  color: var(--Yellow500);

  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
  overflow: visible;
  background-color: var(--dark-purple);
  color: var(--white);
  padding: 10rem 0 5rem;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: var(--yellow);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-purple);
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
}

/* Project Overview */
.project-overview {
  background-color: var(--light-purple);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.project-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 0, 51, 0.9) 0%,
    rgba(90, 44, 130, 0.7) 100%
  );
  z-index: 1;
}

.project-overview .container {
  position: relative;
  z-index: 2;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.overview-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.overview-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.overview-item h3 {
  color: var(--yellow);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Discovery & Research */
.discovery {
  background-color: var(--teal);
  color: var(--white);
}

.discovery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.discovery-text h2 {
  color: var(--yellow);
}

.discovery-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.discovery-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.discovery-image:hover img {
  transform: scale(1.05);
}

/* Brand Strategy */
.brand-strategy {
  background-color: var(--teal);
  color: var(--white);
  position: relative;
}

.strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.strategy-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.strategy-image img {
  width: 100%;
  height: auto;
}

.strategy-text h2 {
  color: var(--yellow);
}

/* Logo Development */
.logo-development {
  background-color: var(--dark-purple);
  color: var(--white);
  padding: 5rem 0;
}

.logo-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.logo-content h2 {
  color: var(--yellow);
}

.logo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.logo-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.logo-item h3 {
  color: var(--yellow);
  margin-bottom: 1rem;
}

/* Brand Identity */
.brand-identity {
  background-color: var(--light-purple);
  color: var(--white);
}

.identity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.color-swatch {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem;
  color: var(--white);
  font-size: 0.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.typography {
  margin-top: 2rem;
}

.font-example {
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
}

/* Website Strategy */
.website-strategy {
  background-color: var(--dark-purple);
  color: var(--white);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.strategy-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.strategy-card h3 {
  color: var(--yellow);
  margin-bottom: 1rem;
}

/* Website Design */
.website-item-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.website-design {
  background-color: var(--light-purple);
  color: var(--white);
}

.design-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.design-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.design-image img {
  width: 100%;
  height: auto;
}

.design-text h2 {
  color: var(--yellow);
}

.design-features {
  margin-top: 2rem;
}
.feature-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* responsive columns */
  gap: 3rem 4rem; /* row-gap and column-gap */
  padding: 4rem 5vw; /* 5% padding on left/right for gutters */
  max-width: 1600px;
  margin: 0 auto; /* centre on large screens */
}
@media (max-width: 768px) {
  .feature-wrapper {
    grid-template-columns: 1fr;
  }
}
.feature-item {
  background-color: var(--Purple900);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  overflow: visible !important;
  position: relative;
  z-index: 1;
  font-family: var(--Body-Font);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-item > p {
  margin: 0%;
}
.feature-icon {
  background-color: var(--Teal500);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 1rem;
  flex-shrink: 0;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.feature-item:hover .feature-icon {
  background-color: var(--Yellow500);
  color: var(--Purple900);
}
/* Call to Action */
.cta {
  background-color: var(--Teal500);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  color: var(--Yellow500);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* Footer */
footer {
  background-color: var(--dark-purple);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
}

.footer-contact a {
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--yellow);
  transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--white);
}

.footer-links ul li a:hover {
  color: var(--yellow);
}

.copyright {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .overview-grid,
  .discovery-content,
  .strategy-content,
  .identity-content,
  .strategy-grid,
  .design-content,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .discovery-image,
  .strategy-image,
  .design-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
  }

  .hero::after {
    width: 50%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    margin-bottom: 2rem;
  }
  .hero {
    padding-bottom: 6rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
  */ .container {
    padding: 0 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .color-palette {
    justify-content: center;
  }

  .Hero-Text {
    max-width: 90vw;
  }
}
