/*
  Main Stylesheet for Yurelo Casino Hotel
  Color Scheme:
  - Primary: #011F4B (Navy Blue)
  - Accent: #B76E79 (Rose Gold)
  - Secondary: #4A4E69 (Slate)
  - Text: #FFFFFF (White)
*/

/* Base Styles */
:root {
  --primary: #011F4B;
  --primary-light: #0A3A6B;
  --primary-dark: #01142E;
  --accent: #B76E79;
  --accent-light: #D8A0A8;
  --accent-dark: #95424D;
  --secondary: #4A4E69;
  --secondary-light: #6A728F;
  --secondary-dark: #2F334D;
  --text: #FFFFFF;
  --text-dark: #F0F0F0;
  --dark: #111111;
  --light: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #E0E0E0;
  --gray-dark: #AAAAAA;
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  --gold: #D4AF37;
  --gold-light: #F5E9BE;
  --transparent: rgba(0, 0, 0, 0);
  
  --header-height: 80px;
  --section-padding: 80px 0;
  --container-padding: 0 24px;
  --border-radius: 4px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.logo h1, .logo span,
.nav-links a,
.btn,
.footer-logo h2, .footer-logo span,
.footer-links h3,
.footer-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-light);
  color: var(--light);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-light);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
}

.btn-accent {
  background-color: var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  z-index: 1000;
  transition: var(--transition);
}

#header.scrolled {
  background-color: var(--primary);
  box-shadow: var(--box-shadow);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light);
  text-decoration: none;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

.logo span {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-links li {
  margin: 0 12px;
}

.nav-links a {
  color: var(--light);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--light);
  transition: var(--transition);
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator span {
  position: relative;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.separator span::before,
.separator span::after {
  content: '';
  position: absolute;
  top: 0;
  width: 5px;
  height: 3px;
  background-color: var(--accent);
}

.separator span::before {
  left: -10px;
}

.separator span::after {
  right: -10px;
}

/* Footer */
#footer {
  background-color: var(--primary-dark);
  color: var(--light);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-info {
  grid-column: span 1;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: var(--light);
}

.footer-logo span {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-social {
  display: flex;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--light);
  transition: var(--transition);
}

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

.footer-links {
  grid-column: span 1;
}

.footer-links h3 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  grid-column: span 1;
}

.footer-contact h3 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact ul li i {
  color: var(--accent);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

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

/* Page Banner */
.page-banner {
  position: relative;
  height: 300px;
  background-color: var(--primary);
  background-image: linear-gradient(rgba(1, 31, 75, 0.8), rgba(1, 31, 75, 0.8)), url('../images/page-banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
}

.banner-content {
  text-align: center;
  color: var(--light);
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: inline;
  font-size: 1rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
  color: var(--accent);
}

.breadcrumb li a {
  color: var(--light);
}

.breadcrumb li a:hover {
  color: var(--accent);
}

.breadcrumb li.active {
  color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-info {
    grid-column: span 2;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .page-banner {
    height: 250px;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-info,
  .footer-links,
  .footer-contact {
    grid-column: span 1;
    margin-bottom: 30px;
  }
  
  .page-banner {
    height: 200px;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
}