/* ---------------------------------------
   FASHION CHIC STYLE — Orange & Cream
---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #FFFDF6; /* light cream */
  color: #1A1A1A; /* deep charcoal */
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: #FF8C42;
  color: #fff;
}

/* ---------------------------------------
   HEADER / NAV
---------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background-color: #FFFFFF;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background-color 0.4s, box-shadow 0.4s;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

header .logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #FF8C42;
}

/* ---------------------------------------
   HERO SECTION WITH BACKGROUND
---------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 80px;
  background: 
    linear-gradient(to bottom, rgba(255, 235, 217, 0.7), rgba(255, 253, 246, 0.9)),
   url("hero.jpg?v=2") no-repeat center center / cover;
  text-align: center;
  position: relative;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #FF8C42;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 36px;
  color: #1A1A1A;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  background-color: #FF8C42;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(255, 140, 66, 0.3);
  transition: background-color 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}

.btn:hover {
  background-color: #e27633;
  transform: translateY(-4px);
}

/* ---------------------------------------
   MAIN PAGE LAYOUT
---------------------------------------- */
main {
  padding: 100px 6% 60px;
  max-width: 1200px;
  margin: auto;
}

section + section {
  margin-top: 60px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #FF8C42;
  letter-spacing: 1px;
}

/* ---------------------------------------
   ABOUT PAGE
---------------------------------------- */
.card {
  background-color: #fff;
  border: 1px solid #FFE3CD;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* ---------------------------------------
   PORTFOLIO GALLERY
---------------------------------------- */
.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item p {
  padding: 10px;
  text-align: center;
  font-weight: 600;
  color: #1A1A1A;
}

/* ---------------------------------------
   SERVICES
---------------------------------------- */
.service-card {
  background-color: #fff;
  border-left: 6px solid #FF8C42;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h3 {
  color: #FF8C42;
  margin-bottom: 12px;
}

/* ---------------------------------------
   CONTACT PAGE (No Form) with buttons
---------------------------------------- */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.contact-intro {
  max-width: 700px;
}

.contact-details {
  background: #fff;
  padding: 24px;
  border: 1px solid #FFE3CD;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: 400px;
  width: 100%;
}

.contact-details h3 {
  margin-bottom: 12px;
  color: #FF8C42;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-buttons .btn {
  min-width: 180px;
  text-align: center;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  background-color: #FF8C42;
  color: #fff;
  box-shadow: 0 6px 12px rgba(255, 140, 66, 0.3);
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
}

.contact-buttons .btn:hover {
  background-color: #e27633;
  transform: translateY(-4px);
}

/* ---------------------------------------
   FOOTER
---------------------------------------- */
footer {
  text-align: center;
  padding: 24px 0;
  background-color: #FFE3CD;
  color: #1A1A1A;
  font-size: 0.9rem;
  margin-top: 60px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}

/* ---------------------------------------
   SCROLLBAR
---------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #FF8C42;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e27633;
}

/* ---------------------------------------
   RESPONSIVE DESIGN
---------------------------------------- */
@media (max-width: 768px) {
  .contact-details {
    max-width: 100%;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  nav {
    gap: 12px;
  }
}








