/*
Theme Name: The Phillys Premium
Theme URI: https://thephillys.ca
Author: The Phillys
Author URI: https://thephillys.ca
Description: Premium restaurant theme for online ordering and catering
Version: 1.2
*/

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff; /* White background */
  color: #0f0f0f; /* Dark text for readability */
}


/* Header Container */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Logo Left */
header .logo img {
  height: 60px;
  width: auto;
  transition: height 0.3s ease;
}

/* Navigation Menu */
.main-nav {
  flex-grow: 1;
  text-align: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;  /* space between menu items */
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #0f0f0f;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #f05822;  /* Orange highlight on hover */
}

/* CTA Buttons Top Right */
.header-cta {
  display: flex;
  gap: 10px;
}

.header-cta a.cta {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header-cta .order { background: #f05822; color: #ffffff; }
.header-cta .catering { background: #f6a932; color: #0f0f0f; }

.header-cta a.cta:hover {
  opacity: 0.9;
}

/* Sticky Scroll Effect */
header.sticky .logo img {
  height: 45px;
}

/* Responsive Mobile */
@media (max-width: 992px) {
  header .header-container {
    flex-direction: column;
    align-items: center;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .header-cta {
    margin-top: 10px;
    flex-direction: row;
    gap: 10px;
  }
}



/* HERO */
/* HERO SECTION */

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
              url('https://thephillys.ca/wp-content/uploads/2025/12/Screen-Shot-2025-12-12-at-4.27.59-PM.png') center/cover no-repeat;
}



.hero h1 {
  font-size: 60px;
  color: #f05822; /* Orange heading for pop */
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  color: #333333; /* Dark gray subtext for readability */
  margin-bottom: 30px;
}

.hero .cta {
  margin: 10px;
  padding: 16px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .cta.order {
  background: #f05822;
  color: #ffffff;
}

.hero .cta.catering {
  background: #f6a932;
  color: #0f0f0f;
}

.hero .cta.order:hover {
  background: #d14a1f; /* darker orange on hover */
}

.hero .cta.catering:hover {
  background: #e89e2c; /* darker yellow on hover */
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 18px;
  }
}




/*.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)),
              url('https://images.unsplash.com/photo-1550547660-d9450f859349?w=1200') center/cover no-repeat;
}
.hero h1 { font-size: 60px; color: #0f0f0f; margin-bottom: 20px; }
.hero p { font-size: 22px; color: #0f0f0f; margin-bottom: 30px; }
.hero .cta { margin: 10px; }




/* Sections */
/* .section {
  padding: 80px 40px;
  text-align: center;
  color: #0f0f0f;
} */


/* Menu Highlights Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff; /* White card background */
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card h3 {
  margin: 15px 0 10px 0;
  font-size: 22px;
  color: #f05822; /* Orange headings */
}

.card .cta { margin-bottom: 20px; }

.card:hover { transform: translateY(-5px); }

/* Catering Section */
.catering-section {
  background: #fff; /* White section */
  padding: 80px 20px;
  color: #0f0f0f; /* Dark text */
}

.catering-section h2 { font-size: 38px; color: #f05822; margin-bottom: 20px; } /* Orange heading */
.catering-section p { font-size: 20px; margin-bottom: 30px; }
.catering-section .cta.catering { background: #f6a932; color: #0f0f0f; }

/* Footer */
footer { 
  background: #ffffff; /* White footer */
  padding: 40px; 
  text-align: center; 
  color: #0f0f0f;
  border-top: 1px solid #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 18px; }
  .card img { height: 150px; }
}

/* ABOUT PAGE */
.about-hero {
  background: #f05822;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 20px;
}

.about-content {
  background: #ffffff;
  padding: 80px 20px;
  color: #0f0f0f;
}

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

.about-content h2 {
  font-size: 32px;
  margin: 40px 0 15px;
  color: #f05822;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
}

.about-content ul {
  margin-top: 20px;
}

.about-content ul li {
  font-size: 18px;
  margin-bottom: 10px;
}
