/*
Theme Name: Rawmance
Theme URI: https://rawmancec.org
Author: Dave
Description: A bold adult theme for romantic stories and videos.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
*/
/* Header */
.site-header {
  background: linear-gradient(135deg, #ff69b4, #800080);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-nav .nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-nav .nav-menu li a {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav .nav-menu li a:hover {
  color: #ffebf7; /* soft romantic highlight */
}

body {
  background-color: var(--bg-color, #1a001f);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

:root {
  --primary: #ff69b4;
  --secondary: #800080;
  --bg-color: #1a001f;
}

@media (max-width: 768px) {
  .container { padding: 10px; }
  nav ul { flex-direction: column; }
}
.homepage .section {
  padding: 60px 20px;
}

.section-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}
/* General grid container */
.grid {
  display: grid;
  gap: 20px;
}

/* Two-column layout */
.grid.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

/* Three-column layout */
.grid.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid.two-columns,
  .grid.three-columns {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}

.three-columns > * {
  flex: 1 1 calc(33.333% - 20px);
}

.two-columns > * {
  flex: 1 1 48%;
}

.card, .video-card {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
}

.dark-bg {
  background: #1a001f;
  color: #fff;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}
.single-content {
  padding: 40px 20px;
}

.entry-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.entry-meta {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
}

.featured-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.entry-content {
  font-size: 1rem;
  line-height: 1.6;

  .hero {
  background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

footer {
  background-image: url('assets/images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
}
.btn-primary {
  background: linear-gradient(135deg, #ff69b4, #800080);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff85c1, #a020f0);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #ff69b4;
  color: #ff69b4;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #ff69b4;
  color: white;
}
.card, .video-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.card:hover, .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card h3, .video-card h4 {
  color: #800080;
  margin-bottom: 10px;
}

.card p, .video-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.card::before, .video-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(255,105,180,0.2), transparent);
  z-index: -1;
  border-radius: 16px;
}
/* === Rawmance Buttons === */
.btn-primary { ... }
.btn-primary:hover { ... }
.btn-secondary { ... }
.btn-secondary:hover { ... }

/* === Rawmance Cards === */
.card, .video-card { ... }
.card:hover, .video-card:hover { ... }
.card h3, .video-card h4 { ... }
.card p, .video-card p { ... }
/* Footer */
.site-footer {
  background: linear-gradient(135deg, #800080, #ff69b4);
  background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* overlay for readability */
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer .social-icons {
  margin-bottom: 20px;
}

.site-footer .social-icons a {
  color: #ffebf7;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.site-footer .social-icons a:hover {
  color: #fff;
}

.site-footer .site-info {
  font-size: 0.9rem;
  color: #ddd;
}
/* Horizontal Navigation */
.main-nav {
  background-color: #2c003e;
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-menu li a {
  color: #ffebf7;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ffffff;
}
