/* 
  KUKKU Indian Restaurant - Main Stylesheet
  Combines all stylesheet components
  Created: 2025-09-17
*/

/* Import normalize first for baseline styles */
@import 'normalize.css';

/* Import our custom stylesheets in order */
@import 'base.css';
@import 'layout.css';
@import 'components.css';

/* ========== Footer Styles ========== */
.footer {
  background-color: var(--dark);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFB300' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: var(--z-back);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-right: var(--space-sm);
}

.footer-logo-text {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  color: var(--cream);
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--title-font);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--cream);
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  opacity: 1;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ========== Entertainment Module Styles ========== */
.entertainment {
  background-color: var(--cream);
  position: relative;
  padding: var(--space-xl) 0;
}

.entertainment-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E65100' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: var(--z-back);
}

.entertainment-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.entertainment-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.resource-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

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

.resource-card-title {
  font-family: var(--title-font);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--primary);
  position: relative;
  padding-bottom: var(--space-sm);
}

.resource-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.resource-link {
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.resource-link:last-child {
  border-bottom: none;
}

.resource-link a {
  display: block;
  color: var(--dark);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.resource-link a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* ========== Back to Top Button ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ========== Media Queries ========== */
@media screen and (max-width: 1200px) {
  :root {
    --container-width: 90%;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-xl);
  }
}

@media screen and (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  
  h1, .hero-title {
    font-size: 3rem;
  }
  
  h2, .section-title {
    font-size: 2.25rem;
  }
  
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .menu-items {
    grid-template-columns: 1fr;
  }
  
  .chef-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    transition: left var(--transition-medium);
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: var(--space-md) 0;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .chef-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --space-xl: 3rem;
    --space-xxl: 4rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.form-inline {
    grid-template-columns: 1fr;
  }
}
