﻿body {
	font-family: Arial,Helvetica,sans-serif;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: #f9f9f9;
	color: #333;
	text-align: center;
}
header, footer {
	background-color: #1e2a2a;
	color: #fff;
	padding: 1rem 0;
}
h1, h2 {
	color: #c62828;
	margin: .5rem 0;
}
a {
	color: #c62828;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
nav {
	background-color: #333;
	padding: .5rem 0;
}
nav a {
	color: #fff;
	margin: 0 1rem;
	font-weight: 700;
}
nav a:hover {
	text-decoration: underline;
}
/* Dropdown for casino-strippers.com */
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.dropbtn {
  background-color: #333; /* matches nav bar */
  color: #fff; /* matches nav links */
  padding: 0.6rem 1rem; /* smaller, tighter padding */
  font-size: 1rem; /* matches nav links */
  font-weight: 700; /* bold but same as nav */
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  border-radius: 0; /* match nav bar corners */
  transition: background-color 0.3s;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #444; /* subtle hover effect */
}.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1b263b;
  min-width: 240px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
}

.dropdown-content a {
  color: #fff;
  padding: 1rem 1.2rem;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background-color 0.2s;
}

.dropdown-content a:hover {
  background-color: #444;
}
/* Show on hover (desktop) */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Show on tap/focus (mobile/iPhone) */
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* Mobile optimizations – iPhone Safari friendly */
@media screen and (max-width: 768px) {
  .dropdown {
    width: 100%;
  }
  .dropbtn {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  .dropdown-content {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    max-height: 65vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.5); /* subtle lift */
  }
}

/* Focus outline for accessibility */
.dropdown-content a:focus,
.dropbtn:focus {
  outline: 3px solid #ffeb3b;
  outline-offset: -2px;
}}
@media (hover:none) and (pointer:coarse){
.dropbtn:focus + .dropdown-content, .dropbtn:active + .dropdown-content {
	display: block;
}
}
@media (max-width:700px){
nav {
	display: flex;
	flex-direction: column;
	align-items: center;
}
nav a, .dropbtn {
	display: block;
	margin: .3rem 0;
	width: 90%;
	text-align: center;
}
.dropdown-content {
	position: static;
	box-shadow: none;
	width: 100%;
}
}
.container {
	padding: 1rem;
	max-width: 960px;
	margin: 0 auto;
}
.gallery-vertical {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
}
.gallery-vertical img {
	width: 300px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.review {
	background-color: #fff;
	margin: 1rem auto;
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	max-width: 800px;
	text-align: left;
}
footer p {
	margin: 0;
	font-size: .9rem;
}
