@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --main-color: #ffffff;
  --accent-color: #e6d5c3;
  --text-color: #2c2c2c;
  --gold: #b8860b;
  --light-gold: #d4af37;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--main-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-color);
  padding: 1.5rem 0;
  box-shadow: 0 2px 20px var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

header.scroll-down {
  transform: translateY(-100%);
}

header.scroll-up {
  transform: translateY(0);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

.insta-btn, .trendyol-btn {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
}

.insta-btn {
  background: var(--gold);
  color: white;
}

.trendyol-btn {
  background: #f27a1a;
  color: white;
}

.insta-btn:hover, .trendyol-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.insta-btn:hover {
  background: var(--light-gold);
}

.trendyol-btn:hover {
  background: #ff8c2a;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Remove fade animations for about section */
.about h2.fade-element,
.about p.fade-element {
  opacity: 1;
  transform: none;
}

.about h2.fade-in,
.about p.fade-in {
  opacity: 1;
  transform: none;
}

/* Gallery Section */
.gallery {
  background: var(--main-color);
  padding: 8rem 0;
}

.gallery h2 {
  text-align: center;
  color: var(--text-color);
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0;
}

.gallery-grid img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.gallery-grid img.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
  background: var(--accent-color);
  padding: 8rem 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  color: var(--text-color);
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--light-gold);
}

.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Map Container */
.map-container {
  flex: 1 1 500px;
  min-width: 320px;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background: var(--text-color);
  color: var(--main-color);
  text-align: center;
  padding: 2.5rem 0;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Animation Classes */
.fade-element {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 1;
  transform: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    align-items: stretch;
  }
  
  .map-container {
    max-width: 100%;
    min-width: 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .about h2, .gallery h2, .contact-info h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-flex {
    justify-content: space-between;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -2px 0 20px var(--shadow);
  }

  nav.active {
    right: 0;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    margin-left: auto;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--main-color);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .logo {
    height: 50px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .about h2, .gallery h2, .contact-info h2 {
    font-size: 2.2rem;
  }
  
  .about p, .contact-info p {
    font-size: 1.1rem;
  }

  .about {
    padding: 4rem 1rem;
  }

  .about h2 {
    font-size: 2.5rem;
  }

  .about p {
    font-size: 1.1rem;
  }
}