@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Poiret+One&display=swap');

:root {
    --primary: #e31c79;
    --primary-dark: #c2185b;
    --primary-light: #ff5c9d;
    --secondary: #0a0a12;
    --secondary-light: #1a1a2e;
    --light: #f8f8f8;
    --dark: #050508;
    --gray: #888;
    --gold: #d4af37;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --section-spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.poiret {
    font-family: 'Poiret One', cursive;
    font-weight: 400;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-img {
    width: 150px !important;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-text {
    font-size: 24px;
    color: var(--light);
    font-family: 'Poiret One', cursive;
    letter-spacing: 8px;
    position: relative;
}

.preloader-text:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    animation: preloaderLine 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes preloaderLine {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition);
    mix-blend-mode: difference;
}

header.scrolled {
    padding: 20px 0;
    background-color: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--light);
    font-family: 'Poiret One', cursive;
    letter-spacing: 3px;
    position: relative;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

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

nav ul li {
    margin-left: 40px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,8,0.8) 0%, rgba(5,5,8,0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    opacity: 1;
    animation: fadeInUp 1.2s ease forwards;
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Poiret One', cursive;
    font-size: 24px;
    letter-spacing: 5px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease forwards 0.3s;
}

.hero-title {
    font-size: 80px;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 1.2s ease forwards 0.6s;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-title span:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0.3;
}

.hero-text {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease forwards 0.9s;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    opacity: 1;
    animation: fadeInUp 1.2s ease forwards 1.2s;
}

.btn {
    padding: 16px 40px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 28, 121, 0.4);
}

.btn-outline {
    border: 1px solid var(--light);
    color: var(--light);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 1;
    animation: fadeInUp 1.2s ease forwards 1.5s;
}

.scroll-down:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: var(--light);
    animation: scrollDownLine 2s infinite ease;
}

@keyframes scrollDownLine {
    0% { transform: translateY(0) translateX(-50%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(20px) translateX(-50%); opacity: 0; }
}

/* About Section */
.about {
    padding: var(--section-spacing) 0;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(227,28,121,0) 70%);
    opacity: 0.2;
    z-index: 0;
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-family: 'Poiret One', cursive;
    font-size: 24px;
    letter-spacing: 5px;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
}

.section-title {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.section-title span {
    color: var(--primary);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--gray);
    opacity: 0;
    transform: translateY(30px);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
}

.about-text h3 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Poiret One', cursive;
}

.stat-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
}

.about-image-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-image-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(227, 28, 121, 0.3);
    top: -30px;
    right: -30px;
    z-index: 0;
}

/* Portfolio Section */
.portfolio {
    position: relative;
    padding: var(--section-spacing) 0;
}

/* Featured Portfolio Items - specifically for homepage */
.featured-portfolio-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 450px;
    opacity: 1;
    transform: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Make overlay always visible for featured items */
.featured-portfolio-item .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(5,5,8,0.8) 0%, rgba(5,5,8,0.2) 70%, rgba(5,5,8,0) 100%);
}

/* Add hover effect for featured items */
.featured-portfolio-item:hover {
    transform: translateY(-10px);
}

.featured-portfolio-item:hover .portfolio-media {
    transform: scale(1.05);
}

.portfolio:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--secondary);
    z-index: -1;
}

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

.portfolio-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 450px;
    opacity: 1; /* Changed from 0 to ensure items are visible by default */
    transform: translateY(0); /* Reset transform to ensure items are in correct position */
    transition: var(--transition);
}

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

.portfolio-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,5,8,0.9) 0%, rgba(5,5,8,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-family: 'Poiret One', cursive;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 14px;
}

.portfolio-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Models Section */
.models {
    padding: var(--section-spacing) 0;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.models:before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(227,28,121,0) 70%);
    opacity: 0.2;
    z-index: 0;
}

.models-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.models-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.models-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(227, 28, 121, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--gray);
    font-size: 15px;
}

/* Contact Section */
.contact {
    padding: var(--section-spacing) 0;
    position: relative;
}

.contact-container {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
}

.contact-info h3 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p, .info-content a {
    color: var(--gray);
    font-size: 16px;
}

.contact-form {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
}

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

.form-control {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.form-status {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #34c759;
}

.form-status.error {
    display: block;
    background-color: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--secondary);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    padding: 0 20px;
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    padding-right: 0;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    position: relative;
    padding-left: 15px;
    transition: var(--transition);
}

.footer-links a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 20px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.instagram-item {
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 28, 121, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: white;
    font-size: 24px;
}

.instagram-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: var(--gray);
    text-align: center;
}

.instagram-loading i {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.instagram-error {
    padding: 20px;
    color: var(--gray);
    text-align: center;
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(227,28,121,0) 70%);
    opacity: 0.1;
    filter: blur(30px);
}

/* Model Application Button */
.floating-apply-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: var(--primary);
    color: var(--light);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 15px 40px rgba(227, 28, 121, 0.5);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite ease;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(227, 28, 121, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(227, 28, 121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 28, 121, 0); }
}

.floating-apply-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--primary-dark);
    animation: none;
}

.floating-apply-btn span {
    display: none;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 992px) {
    .floating-apply-btn {
        width: auto;
        padding: 0 30px;
        border-radius: 35px;
    }
    
    .floating-apply-btn span {
        display: inline;
    }
}

/* Age Verification Modal */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.age-verification-box {
    background-color: var(--secondary);
    padding: 60px;
    border-radius: 5px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.age-verification-box:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(227,28,121,0) 70%);
    opacity: 0.1;
    z-index: 0;
}

.age-verification-content {
    position: relative;
    z-index: 1;
}

.age-verification-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.age-verification-box p {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 18px;
    color: var(--gray);
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
    
    .section-title {
        font-size: 50px;
    }
    
    .about-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-spacing: 80px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        flex: none;
        width: 100%;
    }
    
    .about-image {
        margin-top: 50px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-col {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .models-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .models-features {
        grid-template-columns: repeat(1, 1fr);
    }
    
    header {
        padding: 20px 0;
        background-color: var(--dark);
        mix-blend-mode: normal;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--secondary);
        padding: 100px 40px 40px;
        transition: var(--transition);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .floating-apply-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .age-verification-box {
        padding: 40px 20px;
    }
    
    .age-verification-box h2 {
        font-size: 32px;
    }
    
    .age-verification-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-col {
        flex: 0 0 100%;
        padding: 0;
    }
}