/* Reset and base styles updated */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a961;
  --dark-gold: #b8984a;
  --cream: #f5f3ef;
  --beige: #e8e3d9;
  --light-gray: #f9f8f6;
  --dark-gray: #2c2c2c;
  --text-dark: #1a1a1a;
  --text-light: #666;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Completely redesigned transparent navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar.scrolled .nav-menu a {
  color: var(--text-dark);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-button {
  background: #fff;
  color: var(--text-dark);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.navbar.scrolled .cta-button {
  background: var(--gold);
  color: #fff;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* Completely redesigned hero section to match reference */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url("./images/hero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-description {
  max-width: 500px;
  margin-bottom: 35px;
}

.hero-description p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-button {
  background: #fff;
  color: var(--text-dark);
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hero-button-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
  backdrop-filter: blur(5px);
}

.hero-button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-info-card {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 25px;
  border-radius: 12px;
  max-width: 280px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.hero-info-card p {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Complete redesign of About section to match the image */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 60px;
}

.about-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--text-dark);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 5px;
}

.about-grid {
  display: block;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 400;
  
}

.about-text {
  margin-bottom: 60px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dot-small {
  width: 6px;
  height: 6px;
  background: var(--text-dark);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.stat-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: var(--text-dark);
  margin: 0;
  font-weight: 400;
  line-height: 1;
}

.stat-box h3 sub {
  font-size: 14px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  vertical-align: baseline;
  margin-left: 5px;
  font-weight: 400;
}

/* Responsive design for mobile and tablet */
@media (max-width: 1024px) {
  .section-title {
    font-size: 38px;
  }

  .stat-box h3 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-text {
    margin-bottom: 40px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-box {
    padding: 40px 30px;
    min-height: 160px;
  }

  .stat-box h3 {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .stat-box {
    padding: 35px 25px;
  }

  .stat-box h3 {
    font-size: 48px;
  }

  .stat-label {
    font-size: 10px;
    margin-bottom: 30px;
  }
}

.testimonial {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 30px;
}

blockquote {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-dark);
}

.author-title {
  font-size: 14px;
  color: var(--text-light);
}

.portfolio {
  padding: 120px 0;
  background: var(--light-gray);
}

.portfolio-header {
  margin-bottom: 60px;
}

.section-title-large {
  font-family: "Playfair Display", serif;
  font-size: 120px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 400;
  line-height: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.portfolio-item.large {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 5px;
}

.curated-spaces {
  padding: 120px 0;
  background: #fff;
}

.curated-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}

.curated-header img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.small-text {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.curated-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  max-width: 800px;
  margin: 30px 0 60px;
  line-height: 1.4;
}

.curated-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.curated-item {
  position: relative;
}

.curated-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.curated-info {
  background: var(--cream);
  padding: 40px;
  border-radius: 8px;
  margin-top: 20px;
}

.curated-info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.interactive {
  padding: 120px 0;
  background: var(--light-gray);
  text-align: center;
}

.interactive-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 30px;
}

.interactive-description {
  max-width: 700px;
  margin: 20px auto 60px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.interactive-preview {
  margin: 60px 0;
}

.interactive-preview img {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
}

.interactive-feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  text-align: left;
  margin-top: 80px;
}

.feature-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.feature-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}

.discover {
  padding: 120px 0;
  background: #fff;
}

.discover-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.discover-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.discover-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 4px;
}

.project-info-card {
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 97, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.project-info-card h3 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.explore-button {
  background: #fff;
  color: var(--text-dark);
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.explore-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Updated responsive styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-info-card {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 40px;
  }

  .curated-header,
  .curated-grid,
  .interactive-feature,
  .discover-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .discover-projects {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    color: var(--text-dark);
  }

  .cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-info-card {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-button,
  .hero-button-outline {
    width: 100%;
    text-align: center;
  }

  .section-title-large {
    font-size: 60px;
  }
}

/* Added new styles for Values Section, Experience Section, and all new pages */

/* Values Section Styles */
.values-section {
  padding: 100px 0;
  background: #fff;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}


.value-card {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Experience Section Styles */
.experience-section {
  padding: 120px 0;
  background: var(--cream);
}

.experience-content {
  max-width: 1000px;
  margin: 0 auto;
}

.experience-header {
  text-align: center;
  margin-bottom: 60px;
}

.experience-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 15px;
}

.experience-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.timeline-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.timeline-year {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.timeline-value {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--text-dark);
  font-weight: 600;
}

.project-breakdown {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.project-breakdown h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.breakdown-bars {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.breakdown-bar {
  width: 100%;
  height: 12px;
  background: var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  border-radius: 20px;
  transition: width 1s ease;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achievement-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
}

.achievement-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--gold);
  margin-bottom: 15px;
}

.achievement-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}
