/*
Theme Name: Capitol Square Jaipur
Description: A modern, pink and white responsive boutique hotel theme for Capitol Square.
Author: Capitol Square
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary-pink: #D81B60; 
  --light-pink: #FCE4EC; 
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-gray: #666666;
  --accent-gold: #D4AF37;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, .logo {
  font-family: 'Playfair Display', serif;
  color: var(--primary-pink);
}

/* Header & Mobile Navigation */
header {
  background-color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  color: var(--primary-pink);
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu a:hover { color: var(--primary-pink); }

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-pink);
}

/* Attractive Buttons */
.btn-attractive {
  display: inline-block;
  background: linear-gradient(135deg, #D81B60 0%, #F06292 100%);
  color: var(--white) !important;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-attractive:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-pink) !important;
  border: 2px solid var(--primary-pink);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--light-pink);
  transform: translateY(-3px);
}

/* Layout & Cards */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-5px); }
.card-content { padding: 1.5rem; text-align: center; }

/* Tabular Data */
.table-container {
  overflow-x: auto;
  margin: 3rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.data-table th, .data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.data-table th {
  background-color: var(--primary-pink);
  color: var(--white);
  font-weight: 600;
}

.data-table tr:hover { background-color: var(--light-pink); }

/* Comprehensive Footer */
.site-footer {
  background-color: var(--light-pink);
  padding: 4rem 2rem 2rem;
  color: var(--text-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 { margin-top: 0; font-size: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--primary-pink); }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons svg { width: 24px; height: 24px; fill: var(--primary-pink); transition: transform 0.3s; }
.social-icons a:hover svg { transform: scale(1.1); }

/* Carousel (Swiper) adjustments */
.swiper { width: 100%; height: 60vh; min-height: 400px; border-radius: 12px; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-pink) !important; }
.swiper-pagination-bullet-active { background-color: var(--primary-pink) !important; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  .nav-menu.active { display: flex; }
  .swiper { height: 40vh; }
  .hero-h1 { font-size: 2.2rem !important; }
}