/* ===== STUDIO SANTRAL INSPIRED DESIGN ===== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  background: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

/* Container - Full Width */
.container-fluid {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

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

/* Color Variables */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d63384;
  --accent-color: #fd7e14;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: #b02a6b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

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

.btn-secondary:hover {
  background: #e55a00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

/* Navbar - Studio Santral Style */
.navbar {
  background: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: white;
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
  background: rgba(214, 51, 132, 0.1);
}

.navbar-toggler {
  border: none;
  color: white;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* WhatsApp Fixed Button */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
  background: #128c7e;
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Page Header - Studio Santral Style */
.page-header {
  background: var(--bg-light);
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 80px;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0;
}

/* About Page Section - Studio Santral Style */
.about-page-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

.about-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.about-text-content {
  margin-bottom: 3rem;
}

.about-text-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-slogan {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.about-slogan h3 {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1.4;
}

.about-image-large {
  margin-top: 3rem;
  text-align: center;
  justify-content: center;
}

.about-image-large img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

/* Hero Section - Studio Santral Style */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/16.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 400;
   color: white;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Sections */
.section {
  padding: 5rem 0;
  width: 100%;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section - Studio Santral Style */
.about-section {
  background: var(--bg-white);
  padding: 5rem 0;
  text-align: center;
  justify-content: center;
}

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


.about-text h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 2.5rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Environment Section */
.environment-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

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

.environment-text h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.environment-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.environment-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.environment-gallery img:hover {
  transform: scale(1.05);
}

/* Services Section - Studio Santral Style */
.services-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

.services-category {
  margin-bottom: 4rem;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* Rooms Section - Studio Santral Style */
.rooms-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.room-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.room-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-content {
  padding: 2rem;
}

.room-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.room-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Gallery Section - Studio Santral Style */
.gallery-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Room Slider Styles */
.room-slider {
  margin-bottom: 2rem;
}

.room-slider .carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.room-slider .carousel-control-prev,
.room-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.room-slider .carousel-indicators {
  bottom: 20px;
}

.room-slider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.room-slider .carousel-indicators button.active {
  background: var(--secondary-color);
}

/* Room Features List */
.room-features {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.room-features h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.room-features ul {
  list-style: none;
  padding: 0;
}

.room-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.room-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Announcements Section */
.announcements-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

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

.announcement-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.announcement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.announcement-date {
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.announcement-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.announcement-excerpt {
  color: var(--text-light);
  font-size: 1rem;
}

/* FAQ Section - Studio Santral Style */
.faq-section {
  background: var(--bg-white);
  padding: 5rem 0;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid #e9ecef;
}

.faq-item .accordion-button {
  background: var(--bg-white);
  border: none;
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 12px;
  font-size: 1.125rem;
}

.faq-item .accordion-button:not(.collapsed) {
  background: var(--secondary-color);
  color: white;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-body {
  padding: 1.5rem 2rem;
  color: var(--text-light);
  font-size: 1rem;
}

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

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

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-section .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-section .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section .social-icons a:hover {
  background: #b02a6b;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  padding: 0;
  max-width: 900px;
  width: 90%;
  text-align: center;
  overflow: hidden;
}

.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.popup-buttons {
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.popup-buttons .btn {
  padding: 15px 40px;
  background-color: #c77a63;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  min-width: 100px;
  text-align: center;
}

.popup-buttons .btn:hover {
  background-color: #a75c4c;
}

.btn-green {
  background-color: green !important;
}

.btn-red {
  background-color: red !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content,
  .environment-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .announcements-grid {
    grid-template-columns: 1fr;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
  }
  
  .about-text-content p {
    font-size: 1rem;
    line-height: 1.7;
    
  }
  
  .about-slogan h3 {
    font-size: 1.125rem;
  }
  
  .whatsapp-fixed {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .service-card,
  .room-content,
  .announcement-card {
    padding: 1.5rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .page-header {
    padding: 100px 0 60px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.logo {
  filter: brightness(0) saturate(100%) invert(33%) sepia(90%) saturate(800%) hue-rotate(292deg) brightness(100%) contrast(105%);
}

