/* 
 * Bella Terrazzo Salon & Spa
 * Responsive Styles
 */

/* Tablet Styles (768px to 1023px) */
@media screen and (max-width: 1023px) {
  /* Header & Navigation */
  .header-container {
    padding: 10px 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    font-size: 0.8rem;
  }
  
  /* Hero Section */
  .hero {
    height: 70vh;
    margin-top: 80px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  /* Section Padding */
  section {
    padding: 60px 0;
  }
  
  /* Services & Team Grids */
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Gallery */
  .gallery-item {
    height: 400px;
  }
}

/* Mobile Styles (up to 767px) */
@media screen and (max-width: 767px) {
  /* Header & Navigation */
  .header-container {
    padding: 10px 15px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo h1 {
    font-size: 1.3rem;
  }
  
  /* Mobile Menu */
  .mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 80px 20px 20px;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 20px 0;
  }
  
  nav ul li a {
    font-size: 1rem;
    display: block;
    padding: 10px 0;
  }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    height: 60vh;
    margin-top: 70px;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  /* Section Padding */
  section {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  /* Services & Team Grids */
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Gallery */
  .gallery-item {
    height: 300px;
  }
  
  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 20px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .accent-border {
    border-left: none;
    border-top: 4px solid var(--primary-yellow);
    padding-left: 0;
    padding-top: 20px;
  }
  
  .italian-quote {
    font-size: 1.2rem;
    margin: 30px 0;
  }
  
  .italian-quote:before {
    top: -15px;
    left: -10px;
  }
  
  .italian-quote:after {
    bottom: -30px;
    right: -10px;
  }
  
  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Small Mobile Styles (up to 479px) */
@media screen and (max-width: 479px) {
  /* Logo */
  .logo h1 {
    font-size: 1.1rem;
  }
  
  /* Hero Section */
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  /* Section Titles */
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  /* Gallery */
  .gallery-item {
    height: 250px;
  }
  
  /* Team */
  .team-img {
    width: 150px;
    height: 150px;
  }
}

/* Print Styles */
@media print {
  header, 
  footer, 
  .hero, 
  .gallery,
  .contact-form,
  .btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .services-grid,
  .team-grid {
    display: block;
  }
  
  .service-card,
  .team-member {
    page-break-inside: avoid;
    margin-bottom: 20pt;
  }
}
