/* Ciné Le Paris - Home Page Styles */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap");

:root {
  --primary-color: #e50914;
  --secondary-color: #b20710;
  --text-color: #333;
  --light-text: #777;
  --background-color: #f8f8f8;
  --accent-color: #1a1a1a;
  --gold: #d4af37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header */
.cine-header {
  background-color: var(--accent-color);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cine-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.cine-logo {
  height: 60px;
}

.cine-nav-links {
  display: flex;
  gap: 2rem;
}

.cine-nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.cine-nav-links a:hover {
  color: var(--primary-color);
}

.cine-nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.cine-nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.cine-hero {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/placeholder.svg?height=1080&width=1920");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.cine-hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.cine-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cine-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.cine-hero-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cine-hero-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Welcome Section */
.cine-welcome-container {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 3rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.cine-welcome-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.cine-welcome-container h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.cine-welcome-container p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cine-welcome-container strong {
  color: var(--primary-color);
  font-weight: 600;
}

.cine-welcome-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cine-welcome-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Finalized Timesheet Section */
.ft-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 3rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.ft-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.ft-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.ft-section p {
  font-size: 1.1rem;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 1.5rem;
}

.ft-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ft-table th {
  background-color: var(--primary-color);
  color: white;
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.ft-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-color);
  font-size: 0.95rem;
}

.ft-table tr:last-child td {
  border-bottom: none;
}

.ft-table tr:hover td {
  background-color: rgba(229, 9, 20, 0.03);
}

/* Alternating row colors */
.ft-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Date column styling */
.ft-table td:first-child {
  font-weight: 500;
}

/* Time columns styling */
.ft-table td:nth-child(2),
.ft-table td:nth-child(3) {
  font-family: "Courier New", monospace;
  color: var(--light-text);
}

/* Supervisor column styling */
.ft-table td:nth-child(4) {
  font-weight: 500;
}

/* Movies column styling */
.ft-table td:nth-child(5) {
  font-style: italic;
  color: var(--light-text);
}

/* Features Section */
.cine-features {
  background-color: var(--accent-color);
  padding: 5rem 0;
  color: white;
}

.cine-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cine-features-title {
  text-align: center;
  margin-bottom: 3rem;
}

.cine-features-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cine-features-title p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.cine-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cine-feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.cine-feature-card:hover {
  transform: translateY(-10px);
}

.cine-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cine-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cine-feature-card p {
  color: #ccc;
}

/* Footer */
.cine-footer {
  background-color: var(--accent-color);
  color: white;
  padding: 4rem 0 2rem;
}

.cine-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.cine-footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.cine-footer-logo p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.cine-footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.cine-footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.cine-footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.cine-footer-contact i {
  margin-right: 0.8rem;
  color: var(--primary-color);
}

.cine-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cine-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%;
  color: white;
  transition: all 0.3s ease;
}

.cine-footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.cine-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  color: #ccc;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cine-nav {
    flex-direction: column;
    padding: 1rem;
  }

  .cine-logo {
    margin-bottom: 1rem;
  }

  .cine-nav-links {
    gap: 1rem;
  }

  .cine-hero h1 {
    font-size: 2.5rem;
  }

  .cine-welcome-container,
  .ft-section {
    padding: 2rem;
    margin: 3rem 1rem;
  }

  .cine-welcome-container h1,
  .ft-title {
    font-size: 2rem;
  }

  .ft-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cine-hero h1 {
    font-size: 2rem;
  }

  .cine-hero p {
    font-size: 1rem;
  }

  .cine-welcome-container h1,
  .ft-title {
    font-size: 1.8rem;
  }

  .cine-welcome-container p,
  .ft-section p {
    font-size: 1rem;
  }

  .ft-table th,
  .ft-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}
