/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* COLOR PALETTE
/*******************************************/
:root {
  --gold-primary: #D4AF37;
  --gold-light: #E8C468;
  --gold-dark: #B8944A;
  --cream: #F8F4EF;
  --cream-dark: #E8D5C4;
  --brown-dark: #5C4033;
  --brown-medium: #8B6F47;
  --text-dark: #2C2C2C;
  --text-medium: #666666;
  --text-light: #999999;
  --white: #FFFFFF;
}

/******************************************
/* BASE STYLES
/*******************************************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
}

/******************************************
/* HEADER & NAVIGATION
/*******************************************/
header {
  height: 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  transition: transform 0.3s ease;
}

nav .logo:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav ul li a:hover {
  color: var(--gold-primary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.book-btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.book-btn:hover::before {
  left: 0;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/******************************************
/* HERO SECTION
/*******************************************/
main {
  padding: 120px 30px 80px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

main h1 {
  font-size: 82px;
  font-weight: 600;
  letter-spacing: 12px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 50%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 25px 0;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content p {
  font-size: 20px;
  color: var(--text-medium);
  margin: 0 0 45px 0;
  letter-spacing: 1px;
  font-weight: 400;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
  color: var(--white);
  padding: 18px 45px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(92, 64, 51, 0.3);
  margin-bottom: 80px;
  animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.promo-banner {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  padding: 50px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.promo-tag {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.promo-banner p {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
  font-family: 'Playfair Display', serif;
}

.promo-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 14px 35px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/******************************************
/* SERVICES SECTION
/*******************************************/
.services-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 30px;
}

.service-card {
  flex: 1;
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.icon-wrapper {
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.9;
  margin: 0;
}

/******************************************
/* ABOUT SECTION
/*******************************************/
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 120px auto;
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: 30px;
}

.about-content h4 {
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.about-content p {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 2;
  margin: 0 0 40px 0;
}

.about-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
  color: var(--white);
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(92, 64, 51, 0.3);
}

.about-btn:hover {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/******************************************
/* TEAM SECTION
/*******************************************/
.team-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 30px;
}

.section-title {
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.team-member {
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.member-image {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.team-member:hover .member-image {
  transform: scale(1.05);
}

.member-image img {
  width: 100%;
  height: auto;
  display: block;
}

.team-member h5 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  font-family: 'Montserrat', sans-serif;
}

.role {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.credentials {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/******************************************
/* OFFER SECTION
/*******************************************/
.offer-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 50%, var(--gold-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 30px;
  margin: 120px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 196, 104, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 196, 104, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-tag {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.offer-section p {
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 40px 0;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

.offer-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--white);
  color: var(--brown-dark);
  padding: 18px 45px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.offer-btn:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(232, 196, 104, 0.5);
}

/******************************************
/* LOOKBOOK SECTION
/*******************************************/
.lookbook-section {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 30px;
}

.lookbook-section h6 {
  font-size: 52px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 70px 0;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lookbook-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.lookbook-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(92, 64, 51, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.lookbook-item:hover::before {
  opacity: 1;
}

.lookbook-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.lookbook-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.lookbook-item:hover img {
  transform: scale(1.1);
}

/******************************************
/* FOOTER
/*******************************************/
footer {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--text-dark) 100%);
  color: var(--white);
  padding: 80px 30px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin: 0 0 20px 0;
  font-family: 'Playfair Display', serif;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 1px;
}

/******************************************
/* RESPONSIVE DESIGN
/*******************************************/
@media (max-width: 768px) {
  main h1 {
    font-size: 48px;
    letter-spacing: 6px;
  }

  .services-section,
  .team-grid,
  .lookbook-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  nav ul {
    gap: 20px;
  }

  nav ul li a {
    font-size: 11px;
  }

  .section-title,
  .lookbook-section h6 {
    font-size: 36px;
    letter-spacing: 4px;
  }
}
