/* GENEL STILLER */
:root {
  --primary-color: #7d9b76;
  --secondary-color: #e8c4c4;
  --accent-color: #c88ea7;
  --dark-color: #444444;
  --light-color: #f8f8f8;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
}

.btn:hover {
  background: var(--accent-color);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: #d7b0b0;
  color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 4rem 0;
}

/* HEADER */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.logo h1 {
  margin-left: 1rem;
  margin-bottom: 0;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/1.jpg") no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* FEATURES SECTION */
.features {
  background-color: var(--light-color);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-img {
  height: 250px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-box:hover .feature-img img {
  transform: scale(1.1);
}

.feature-content {
  padding: 1.5rem;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
}

/* BLOG SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #777;
}

.blog-meta span {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 0.3rem;
  font-size: 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--accent-color);
}

.read-more i {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* SINGLE POST PAGE */
.post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.post-meta {
  margin-bottom: 2rem;
  color: #777;
}

.post-featured-img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.post-content img {
  border-radius: 8px;
  margin: 2rem 0;
}

.post-content ul, .post-content ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-tags {
  margin: 2rem 0;
}

.tag {
  display: inline-block;
  background: #f1f1f1;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin: 0 0.5rem 0.5rem 0;
  font-size: 0.9rem;
}

.share-post {
  display: flex;
  align-items: center;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.share-post p {
  margin-right: 1rem;
  font-weight: 500;
}

.social-share {
  display: flex;
}

.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 50%;
  margin-right: 0.8rem;
  transition: all 0.3s ease;
}

.social-share a:hover {
  background: var(--accent-color);
  color: white;
}

/* CONTACT SECTION */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details div {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-details i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}

.social-links {
  display: flex;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.contact-form {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-secondary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* FOOTER */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: white;
}

.footer-newsletter p {
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* EVENT COUNTDOWN */
.event-countdown {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/5.jpg") no-repeat center center/cover;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.countdown-title {
  margin-bottom: 2rem;
  color: white;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.countdown-item {
  width: 100px;
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 1rem;
}

/* USER LETTER */
.user-letter {
  background-color: var(--light-color);
  padding: 4rem 0;
}

.letter-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.letter-header {
  text-align: center;
  margin-bottom: 2rem;
}

.letter-body {
  line-height: 1.8;
}

.letter-body p {
  margin-bottom: 1rem;
}

.letter-signature {
  margin-top: 2rem;
  text-align: right;
}

.letter-signature img {
  height: 60px;
  margin-bottom: 0.5rem;
}

.stamp {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg);
}

.stamp-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(200, 142, 167, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-style: italic;
  color: var(--accent-color);
}

/* ABOUT PAGE */
.about-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/4.jpg") no-repeat center center/cover;
  padding: 6rem 0;
  color: white;
  text-align: center;
}

.about-header h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.about-story {
  padding: 5rem 0;
}

.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-text h2 {
  margin-bottom: 1.5rem;
}

.about-story-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
}

.team-content h3 {
  margin-bottom: 0.2rem;
}

.team-content p.position {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.team-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f1f1f1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--accent-color);
  color: white;
}

/* COOKIE NOTIFICATION */
.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-text {
  flex: 1;
  padding-right: 2rem;
}

.cookie-text h3 {
  margin-bottom: 0.5rem;
}

.cookie-btns {
  display: flex;
  gap: 0.8rem;
}

/* THANK YOU MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalopen 0.4s;
}

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

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--dark-color);
}

.success-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 1rem;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 1rem 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .countdown-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .countdown-item {
    width: 80px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .features-container, 
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 1rem 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo h1 {
    font-size: 1.4rem;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .cookie-container {
    flex-direction: column;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
