/* =========================
   GLOBAL RESET + BASE
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f5f6;
    color: #222;
}

/* =========================
   HEADER / NAV
   ========================= */

header {
    width: 100%;
    padding: 20px 40px;
    background: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

header h1 {
    font-size: 28px;
    font-weight: 700;
}

nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #eee;
    transform: scale(1.05);
}

.btn-main {
    background: red;
    color: #fff;
}

.btn-main:hover {
    background: #eee;
}

.apply-btn {
    background: #FFD400;
    color: #000;
}

.apply-btn:hover {
    background: orange;
}

/* =========================
   HOME PAGE – HERO
   ========================= */

.home .hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 80vh;
    overflow: hidden;
}

.home .hero-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .hero-center {
    position: relative;
    background: url("midgets-services.png") no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
    text-align: center;
}

.home .hero-center::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

.home .hero-center * {
    position: relative;
    z-index: 1;
}

.home .hero-center h2 {
    font-size: 42px;
    font-weight: 800;
}

.home .hero-center p {
    font-size: 20px;
    margin-top: 12px;
}

.home .hero .btn {
    background: #FFD400;
    color: #000;
}

/* =========================
   VIDEO SECTION
   ========================= */

.yt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 10%;
}

.yt-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.yt-video iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* =========================
   ABOUT SECTION
   ========================= */

section {
    padding: 80px 10%;
}

.about {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 400px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* =========================
   PHOTO GRID
   ========================= */

.photo-grid-section {
    padding: 0 10% 80px;
}

.photo-grid-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 28px;
}

.photo-grid-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.photo-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
    background: #fff;
}

/* =========================
   EVENTS SECTION ONLY
   ========================= */

.events-section .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.events-section .photo-item {
    text-align: center;
}

.photo-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.stripper-img{
  object-position: center top;
}

.photo-item:hover img {
    transform: scale(1.06);
}

.caption,
.caption-event {
    padding: 18px 12px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* =========================
   CARDS
   ========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card a {
    display: inline-block;
    margin-top: 12px;
    padding: 10px;
    background: #000;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.card a:hover {
    opacity: 0.7;
}

/* =========================
   SERVICE RATES (MAIN PAGE)
   ========================= */

.home .rates-section {
    padding: 80px 10%;
    text-align: center;
}

.home .rates-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    padding: 40px;
}

.home .rates-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 25px;
    display: block;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.home .rates-details {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.home .rates-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
}

.home .rates-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* =========================
   FOOTER
   ========================= */

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
}

/* =========================
   SERVICES PAGE ONLY
   ========================= */

.services section {
    padding: 80px 10%;
    text-align: center;
}

.services .rectangle-container {
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.services .rectangle-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.services .rectangle-text {
    padding: 40px;
    text-align: left;
}

.services .rectangle-text h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.services .rectangle-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

/* COSTUME LIST */
.services .costume-grid {
    margin-top: 0;
    padding: 0;
    list-style-position: inside;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4px;
    column-gap: 12px;
    text-align: center;
    font-size: 17px;
}

/* =========================
   HIRING PAGE ONLY
   ========================= */

.hiring section {
    padding: 80px 10%;
    text-align: center;
}

.hiring .rectangle-container {
    max-width: 900px;
    margin: auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hiring .rectangle-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hiring .rectangle-text {
    padding: 40px;
    text-align: left;
}

.hiring .rectangle-text h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.hiring .rectangle-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

/* COSTUME LIST */
.hiring .costume-grid {
    margin-top: 0;
    padding: 0;
    list-style-position: inside;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4px;
    column-gap: 12px;
    text-align: center;
    font-size: 17px;
}

/* =========================
   ABOUT PAGE ONLY
   ========================= */

.about-page .page-title {
    padding: 60px 10% 20px;
    text-align: center;
}

/* ABOUT SECTION */
.about-page section {
    padding: 40px 10% 80px;
}

.about-page .about {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-page .image-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page .about img {
    width: 360px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-page .about-text {
    max-width: 600px;
}

.about-page .about-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-page .about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.about .image-column img {
    width: 500px;         /* increase size */
    height: auto;         /* keeps proportions */
    display: block;
    margin: 0 auto;       /* centers image */
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 950px) {

    .home .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .home .hero-column img {
        height: 40vh;
    }

    .yt-row {
        flex-direction: column;
        text-align: center;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

    /* Services mobile tweaks */
.services section {
    padding: 50px 7%;
}

.services .costume-grid {
    grid-template-columns: 1fr;
}

/* Hiring mobile tweaks */
.hiring section {
    padding: 50px 7%;
}

.hiring .costume-grid {
    grid-template-columns: 1fr;
}

/* About page mobile tweaks */
.about-page header {
    padding: 16px 18px;
    flex-wrap: nowrap;
}

.about-page header h3 {
    font-size: 22px;
    flex: 1;
}

.about-page nav {
    gap: 10px;
}

.about-page nav a {
    font-size: 16px;
}

.about-page .about {
    flex-direction: column;
    text-align: center;
}

.about-page .about-text h3 {
    font-size: 26px;
}

.about-page .about-text p {
    font-size: 16px;
}