/* CSS Variables */
:root {
  --primary-color: #00d4aa;
  --secondary-color: #E88B7B;
  --dark-bg: #3a3a3a;
  --darker-bg: #2a2a2a;
  --text-color: #333;
  --light-text: #e0e0e0;
  --light-bg: #f9f9f9;
  --white: #ffffff;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header & Navigation */
.site-header {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: block;
}

.navbar-brand .logo {
  height: 60px;
  width: auto;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  align-items: center;
  margin: 0;
  background: transparent;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  transition: color 0.3s;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-contact {
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.btn-contact:hover {
  background: #ff5585;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.btn-login {
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-login:hover {
  background: #ff5585;
  color: var(--white);
}

.mobile-menu-close {
  display: none;
}

/* Login Drawer/Flyout Panel */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

.login-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--dark-bg);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.login-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: var(--dark-bg);
  color: var(--white);
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-drawer {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.close-drawer:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.drawer-content {
  flex: 1;
  padding: 40px 30px;
  overflow-y: auto;
  background: var(--dark-bg);
}

.login-error {
  background: rgba(255, 68, 68, 0.15);
  border-left: 4px solid #ff4444;
  color: #ff6b6b;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.login-form .form-group {
  margin-bottom: 25px;
}

.login-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.login-form label i {
  margin-right: 8px;
  color: var(--primary-color);
}

.login-form input {
  width: 100%;
  padding: 14px;
  border: 2px solid #4a4a4a;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  background: #2a2a2a;
  color: var(--white);
}

.login-form input::placeholder {
  color: #999;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #333;
}

.form-remember {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-label span {
  color: var(--white);
  font-size: 0.9rem;
}

.btn-submit {
  width: 100%;
  background: var(--secondary-color);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: #d97a6a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(232, 139, 123, 0.4);
}

.form-footer {
  margin-top: 25px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #4a4a4a;
}

.forgot-link,
.signup-link {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.forgot-link:hover,
.signup-link:hover {
  color: var(--secondary-color);
}

.form-footer .divider {
  margin: 0 10px;
  color: #666;
}

.quick-links {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #4a4a4a;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-quick-link:hover {
  background: var(--primary-color);
  color: #1f1f1f;
  transform: translateY(-2px);
}

.drawer-footer {
  padding: 20px 30px;
  background: #2a2a2a;
  border-top: 1px solid #4a4a4a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.drawer-footer .drawer-logo {
  height: 50px;
  width: auto;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .login-drawer {
    width: 100%;
    right: -100%;
  }
}

.navbar-toggler {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.navbar-toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--white);
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background-image: url('../images/2022/08/chef-and-cook-working-on-their-dishes.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(50, 50, 50, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content .rotating-text {
  display: inline-block;
  font-size: 5rem;
  font-weight: 700;
  background: var(--secondary-color);
  color: var(--dark-bg);
  padding: 15px 40px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
  overflow: hidden;
  vertical-align: baseline;
  box-shadow: 0 10px 40px rgba(232, 139, 123, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-content .dream-text {
  font-size: 5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content .tagline {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.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: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--secondary-color);
  border: 2px solid transparent;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 139, 123, 0.4);
}

.btn-primary:hover {
  background: #ff5585;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 139, 123, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* What We Do Section */
.what-we-do-section {
  background: var(--dark-bg);
  padding: 0;
  color: var(--white);
}

.container-wide {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.what-we-do-content {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.what-we-do-content h2 {
  font-size: 5.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 0.85;
  letter-spacing: 4px;
  text-align: left;
}

.what-we-do-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  text-align: left;
}

.what-we-do-content .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.what-we-do-image {
  position: relative;
  overflow: hidden;
}

.what-we-do-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(232, 139, 123, 0.1), rgba(255, 107, 157, 0.1));
  opacity: 0;
  transition: opacity 0.4s;
}

.what-we-do-image:hover::after {
  opacity: 1;
}

.what-we-do-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.what-we-do-image:hover img {
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 5rem 0;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  width: 100%;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.section-light {
  background: var(--light-bg);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--white);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem 2.5rem;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 139, 123, 0.2);
  border-color: rgba(232, 139, 123, 0.5);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}

.card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--dark-bg);
  color: var(--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,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  margin: 0 0.5rem;
}

.credit {
  font-size: 0.9rem;
}

.credit a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.active {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .rotating-text {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  section h2 {
    font-size: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}