/*
 * Polladurafivy - Premium Adult Entertainment Network
 * Modern dark blue and orange styling
 */

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #FF7E28;       /* Orange */
    --primary-light: #FF9A57; /* Light Orange */
    --secondary: #0F172A;     /* Dark Blue */
    --secondary-light: #1E293B; /* Medium Blue */
    --dark: #020617;          /* Very Dark Blue */
    --gray: #94A3B8;          /* Medium Gray */
    --light-gray: #F1F5F9;    /* Light Gray */
    --white: #FFFFFF;         /* White */
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--secondary);
    min-height: 100%;
    position: relative;
    overflow-x: hidden;
}

.page-wrapper {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect x='0' y='0' width='5' height='5' fill='%231E293B' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

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

.section-tag {
    display: inline-block;
    background-color: rgba(255, 126, 40, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.2rem;
    color: var(--gray);
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background-color: rgba(15, 23, 42, 0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 12px rgba(255, 126, 40, 0.2);
}

.primary-btn:hover {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 126, 40, 0.3);
    color: var(--white);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.outline-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 20px;
    font-size: 0.85rem;
}

.outline-btn:hover {
    background: rgba(255, 126, 40, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 126, 40, 0.1);
    color: var(--primary-light);
}

/* Header and Navigation */
header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    margin-left: 15px;
    margin-bottom: 0;
    font-weight: 700;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-toggle {
    display: none;
}

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

.menu-toggle-label span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--gray);
    font-weight: 500;
    font-family: var(--heading-font);
    font-size: 0.95rem;
    position: relative;
}

nav ul li a:hover {
    color: var(--white);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li:last-child a {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(255, 126, 40, 0.15);
}

nav ul li:last-child a:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 126, 40, 0.25);
}

nav ul li:last-child a::after {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23FF7E28' fill-opacity='0.05'%3E%3Cpath d='M20 5L5 20l15 15 15-15z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%23FF7E28" d="M44.7,-57.2C59.9,-48.3,75.3,-38,81.3,-23.4C87.2,-8.7,83.6,10.3,75.2,26.3C66.8,42.4,53.5,55.4,38,65C22.6,74.7,4.9,81,-11.8,79C-28.5,77,-44.2,66.7,-56.9,53.5C-69.5,40.4,-79,24.3,-80.6,7.3C-82.2,-9.7,-75.8,-27.7,-65.1,-43.1C-54.3,-58.6,-39.2,-71.5,-23,-74.3C-6.8,-77.1,9.6,-69.9,24.4,-63.3C39.2,-56.7,29.5,-66.2,44.7,-57.2Z" transform="translate(100 100)" /></svg>') center/contain no-repeat;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Features Section */
.features {
    background-color: var(--secondary-light);
    position: relative;
}

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

.feature-card {
    background: linear-gradient(145deg, var(--secondary) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 126, 40, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 126, 40, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Explore Section */
.explore {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.category-card {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: var(--secondary-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23FF7E28' fill-opacity='0.1'%3E%3Cpath d='M30 15L15 30l15 15 15-15z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover::before {
    opacity: 0.7;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 30%, transparent 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.5) 100%);
}

.category-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.6rem;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(0);
    color: var(--primary);
}

.category-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.3s ease 0.1s;
}

.category-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.category-card .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.category-card:hover .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Entertainment Section */
.entertainment {
    background-color: var(--secondary-light);
    position: relative;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.resources-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resources-column a {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 126, 40, 0.2);
    padding: 15px 10px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--gray);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.resources-column a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.resources-column a:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.resources-column a:hover::before {
    opacity: 0.2;
}

/* Join Section */
.join {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23FF7E28' fill-opacity='0.05'%3E%3Cpath d='M50 0L0 50l50 50 50-50z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

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

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.join-text .section-header {
    text-align: left;
}

.join-text .section-header h2::after {
    left: 0;
    transform: translateX(0);
}

.benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-item svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.join-form {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 126, 40, 0.2);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.join-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.join-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-gray);
}

.join-form input,
.join-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.join-form input:focus,
.join-form select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 126, 40, 0.2);
}

.join-form input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary);
}

.form-check label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-check label a {
    text-decoration: underline;
}

.join-form .btn {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 70px 0 20px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-brand {
    margin-left: 15px;
}

.footer-brand h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.footer-brand p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    opacity: 0.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero .container,
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .join-text .section-header {
        text-align: center;
    }
    
    .join-text .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .menu-toggle-label {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(15, 23, 42, 0.95);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .menu-toggle:checked ~ nav {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li:last-child {
        margin-top: 15px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-column {
        flex-basis: calc(50% - 15px);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .join-form {
        padding: 30px 20px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
