/* Additional Luxury CSS for Rumi Konağı Website */

/* Elegant typography enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 600;
}

p {
  font-weight: 300;
  line-height: 1.8;
}

/* Luxury gradients and overlays */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #c19b26 100%);
}

.navy-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Header */
header {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo h1 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav ul li a {
  font-weight: 400;
  letter-spacing: 1.5px;
  padding-bottom: 5px;
}

nav ul li a::after {
  height: 1px;
  bottom: -2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Hero Section Enhancements */
.hero {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, var(--navy-900), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.hero p {
  font-size: 1.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* Enhanced Buttons */
.btn {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 14px 36px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Scroll Down Animation */
.scroll-down {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Enhanced Section Titles */
.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 3rem;
  position: relative;
  display: inline-block;
}

.section-title h2::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--gold);
}

.section-title h2::after {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* About Section Enhancements */
.about-content {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid var(--gold);
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover::before {
  opacity: 1;
  top: 10px;
  left: 10px;
}

/* Room Cards Enhancement */
.room-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.room-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.room-image {
  height: 280px;
}

.room-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 26, 47, 0), rgba(10, 26, 47, 0.7));
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}

.room-card:hover .room-image::before {
  opacity: 1;
}

.room-details h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.room-card:hover .room-details h3 {
  color: var(--gold);
}

.room-feature {
  transition: all 0.3s ease;
}

.room-feature:hover {
  background-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.price {
  position: relative;
  display: inline-block;
}

.price::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: all 0.3s ease;
}

.room-card:hover .price::before {
  width: 100%;
}

/* Room title link and view details button */
.room-title-link {
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.room-title-link:hover {
  color: var(--gold);
}

.room-title-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: all 0.3s ease;
}

.room-title-link:hover::after {
  width: 100%;
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.btn-view-details {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  border: 2px solid var(--gold);
  overflow: hidden;
  align-self: flex-start;
  margin-top: 5px;
}

.btn-view-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--gold);
  transition: 0.3s ease;
  z-index: -1;
}

.btn-view-details:hover {
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-view-details:hover::before {
  width: 100%;
}

/* Testimonials Enhancements */
.testimonial-card {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  color: rgba(212, 175, 55, 0.15);
  font-size: 4rem;
  top: 5px;
  left: 15px;
}

.testimonial-author-image {
  border: 2px solid var(--gold);
}

/* Contact Form Enhancement */
.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0;
  padding: 15px 0;
  background: transparent;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
  outline: none;
}

.contact-form label {
  position: absolute;
  top: 15px;
  left: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.contact-form input:focus ~ label,
.contact-form textarea:focus ~ label,
.contact-form input:valid ~ label,
.contact-form textarea:valid ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--gold);
}

/* Gallery Enhancements */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: var(--navy-900);
  font-size: 2rem;
  transform: scale(0);
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

/* Footer Enhancements */
footer {
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--gold);
  transform: translateY(-5px);
}

/* Navigation Cards */
.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--dark-gray);
}

.nav-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--white);
  font-size: 24px;
}

.nav-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 0 15px;
}

.nav-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Google Reviews Section Styles */
.google-reviews {
    background-color: var(--off-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.google-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/assets/home06.webp') center/cover no-repeat;
    opacity: 0.05;
    filter: blur(5px);
}

.google-reviews .container {
    position: relative;
    z-index: 2;
}

/* Elfsight container responsive adjustments */
.elfsight-app-9f1c7ef1-621d-4c4b-9255-16ef9a7aa93c {
    max-width: 1200px;
    margin: 0 auto;
}

/* Values Section Styling */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  flex: 1;
  min-width: 220px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 50%;
  padding: 15px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--navy);
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--navy);
}

.value-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .room-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .google-reviews {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .btn {
    padding: 12px 25px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}
