/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - Modern Design System */
:root {
  /* Primary Colors - Brighter Professional Blue */
  --primary-color: #2563eb;
  --primary-color-dark: #1e40af;
  --primary-color-hover: #3b82f6;

  /* Secondary Colors - Vibrant Teal */
  --secondary-color: #06b6d4;
  --secondary-color-hover: #22d3ee;

  /* Background Colors */
  --bg-dark: #f1f5f9;
  --bg-darker: #e2e8f0;
  --bg-light: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.95);

  /* Text Colors */
  --text-light: #f8fafc;
  --text-dark: #0f172a;
  --text-gray: #475569;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(203, 213, 225, 0.5);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  padding-top: 70px;
  /* Account for fixed navbar */
  color: var(--text-dark);
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  font-size: 3rem;
  margin: 0 0 1.5rem 0;
  font-weight: 800;
  line-height: 1.2;
}

.section h3 {
  font-size: 2rem;
  font-weight: 600;
}

section#entertainment {
  background: url(../images/section-bg.jpg) no-repeat bottom/cover;
  padding: 10rem 0;
}

.gift-cards {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}

/* Showcase - Hero Section */
#showcase {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(37, 99, 235, 0.1) 100%),
    url('../images/img/image-bg.png') no-repeat center/cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh !important;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#showcase .section-main {
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#showcase .container {
  margin-top: 0;
  animation: fadeInUp 1s ease-out;
}

#showcase h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

#showcase h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: var(--bg-darker);
  color: var(--text-dark);
  border-top: 1px solid var(--glass-border);
}

footer .footer-cols {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(4, 1fr);
  padding: 4rem 2rem;
  text-align: left;
  font-size: 14px;
}

footer .footer-cols ul {
  list-style: none;
}

footer .footer-cols ul li:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: var(--primary-color) solid 2px;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

footer .footer-cols ul li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

footer .footer-bottom {
  background: var(--bg-darker);
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-gray);
}

/* Utils */
.container {
  max-width: 1180px;
  text-align: center;
  margin: 0 auto;
  padding: 0 3rem;
}

.lead {
  font-size: 1.3rem;
}

.text-center {
  text-align: center;
}

/* Buttons - Modern Gradient Buttons */
.btn {
  border-radius: 12px;
  padding: 0.875rem 2rem;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  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: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color-hover) 100%);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-color-hover) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

/* Text colors */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-light {
  color: var(--light-color);
}

.bg-light {
  background: var(--bg-light);
  color: #333;
}

.mb {
  margin-bottom: 1rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mt {
  margin-top: 1rem;
}

/* Navigation - Modern Sticky Nav with Blur */
nav {
  height: auto;
  min-height: 60px;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
  /* Ensure no margin pushes it away from edge */
}

nav ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

nav li {
  list-style: none;
  margin-left: 20px;
}

nav a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 10px 15px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
}

nav li:hover a {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
}

nav a#openup {
  display: none;
}

@media screen and (max-width: 580px) {
  .hide-on-small {
    display: none;
  }

  body {
    padding-top: 60px;
  }

  #showcase {
    min-height: 100vh !important;
    background-attachment: scroll;
  }

  #showcase .container {
    margin-top: 0;
  }

  #showcase h1 {
    font-size: 2.25rem;
  }

  .section-head {
    font-size: 2rem !important;
  }

  #showcase h2 {
    font-size: 1.2rem;
  }

  nav {
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
    background: var(--bg-light);
  }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 10px 0;
  }

  nav li {
    width: 100%;
    margin: 0;
  }

  nav a {
    text-align: left;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-darker);
  }

  nav a:hover {
    background: var(--bg-dark);
  }

  nav a#openup {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 0;
    position: relative;
    color: var(--text-dark);
    text-indent: 0;
  }

  nav a#openup:after {
    content: "|||";
    transform: rotate(-90deg);
    display: inline-block;
    font-size: 1.5rem;
    /* Larger hamburger */
    color: #444;
    /* Ensure flush right */
  }
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}


* {
  box-sizing: border-box;
}

/* Style inputs */
input[type=text],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: var(--primary-color-hover);
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

  .column,
  input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4em 2em;
  min-height: calc(100vh - 150px);
  box-sizing: border-box;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  text-align: center;
  line-height: 1.8;
}

.about-text h2 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

.about-text p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    text-align: left;
  }

  .about-text {
    text-align: left;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  padding: 2rem 0;
}

/* Service Cards - Glassmorphism Design */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card p {
  margin-top: 0;
  font-size: 1rem;
  color: var(--text-gray);
  flex-grow: 1;
  line-height: 1.6;
}

.service-card a.btn {
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Right Div Styling */
.nav-services {
  flex: 1;
  background-color: #0056b3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.nav-services nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.nav-services nav a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  display: block;
  padding: 15px 0;
  margin: 10px 0;
  text-align: center;
  border-radius: 5px;
  background-color: #007bff;
  transition: background-color 0.3s ease;
}

.nav-services nav a:hover {
  background-color: #0056b3;
}

/* Ensure the flex container and cards are behaving as expected */
.service-area {
  display: flex;
  gap: 2em;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Main Content Area Styling */
.detail-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5em;
  text-align: center;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  z-index: 1;
}

.detail-card h3 {
  color: #1a1a2e;
  margin-bottom: 0.5em;
}

.detail-card p {
  font-size: 1em;
  color: #555;
}

.detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Left Div Content Styling */
.service-content {
  flex: 2;
  padding: 20px;
  background-color: #e6f7ff;
  position: relative;
}

.service-content h1 {
  font-size: 2em;
  color: #0056b3;
}

.service-content p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

.containerx {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Improve layout for mobile responsiveness */
@media screen and (max-width: 768px) {
  .service-area {
    flex-direction: column;
    width: 100%;
  }

  .detail-card,
  .service-content,
  .nav-services {
    width: 100%;
    margin: 10px 0;
  }

  .containerx {
    padding: 0 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

/* Utility Classes */
.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    margin: 0 !important;
  }
}

.brand a {
  display: block;
  /* Removes default inline spacing */
  line-height: 0;
  /* Removes line-height spacing */
  padding: 0;
}

.brand img {
  display: block;
  /* Removes bottom spacing for images */
  margin: 0;
  padding: 5px 0;
  /* Minimal vertical padding for the image itself */
}