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

:root {
    --hooters-orange: #FF6B00;
    --hooters-dark-orange: #E55A00;
    --hooters-black: #1A1A1A;
    --hooters-dark-gray: #2D2D2D;
    --hooters-light-gray: #F5F5F5;
    --hooters-white: #FFFFFF;
    --hooters-gold: #FFD700;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--hooters-black);
    background-color: var(--hooters-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--hooters-black);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--hooters-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hooters-orange);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--hooters-orange);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--hooters-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hooters-black) 0%, var(--hooters-dark-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--hooters-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--hooters-orange);
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--hooters-light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: var(--hooters-orange);
    color: var(--hooters-white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background: var(--hooters-dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--hooters-black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--hooters-orange);
    border-radius: 2px;
}

/* Positions Section */
.positions {
    padding: 100px 0;
    background: var(--hooters-light-gray);
}

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

.position-card {
    background: var(--hooters-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--hooters-orange);
}

.position-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--hooters-orange), var(--hooters-dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.position-card:hover .position-icon {
    transform: rotateY(180deg);
}

.position-icon i {
    font-size: 35px;
    color: var(--hooters-white);
}

.position-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--hooters-black);
}

.position-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--hooters-white);
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: var(--hooters-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: var(--hooters-orange);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 40px;
    color: var(--hooters-orange);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon i {
    color: var(--hooters-white);
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--hooters-black);
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Registration Section */
.registration {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--hooters-black) 0%, var(--hooters-dark-gray) 100%);
}

.registration-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--hooters-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hooters-black);
    margin-bottom: 10px;
    text-align: center;
}

.step-description {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--hooters-black);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--hooters-light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--hooters-orange);
    background: var(--hooters-white);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 45px;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--hooters-orange);
}

.btn-next,
.btn-back,
.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-next,
.btn-submit {
    background: var(--hooters-orange);
    color: var(--hooters-white);
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--hooters-dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.btn-back {
    background: var(--hooters-light-gray);
    color: var(--hooters-black);
}

.btn-back:hover {
    background: #E0E0E0;
}

.form-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 30px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h2 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 30px;
}

/* Documents Section Styles */
.documents-section {
    background: var(--hooters-light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.documents-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--hooters-black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.documents-title i {
    color: var(--hooters-orange);
}

/* Upload Row - INE Front and Back */
.upload-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.upload-group {
    margin-bottom: 15px;
}

.upload-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--hooters-black);
    font-size: 0.95rem;
}

.upload-hint {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    font-style: italic;
}

.upload-box {
    border: 2px dashed #ccc;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--hooters-white);
    min-height: 180px;
    position: relative;
}

.upload-box:hover {
    border-color: var(--hooters-orange);
}

.upload-box.has-image {
    border: 2px solid var(--hooters-orange);
    border-style: solid;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    cursor: pointer;
    height: 100%;
    min-height: 180px;
}

.upload-placeholder i {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
    transition: var(--transition);
}

.upload-box:hover .upload-placeholder i {
    color: var(--hooters-orange);
}

.upload-placeholder span {
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.upload-placeholder small {
    color: #999;
    font-size: 0.75rem;
}

.upload-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.upload-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.remove-btn:hover {
    background: #dc3545;
    transform: scale(1.1);
}

/* Selfie Section */
.selfie-requirements {
    background: var(--hooters-white);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--hooters-orange);
}

.selfie-requirements p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
}

.selfie-requirements p:last-child {
    margin-bottom: 0;
}

.selfie-requirements i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.selfie-upload {
    display: flex;
    justify-content: center;
}

.selfie-box {
    max-width: 300px;
    width: 100%;
}

.selfie-box .upload-placeholder {
    padding: 40px 20px;
}

.selfie-box .upload-placeholder i {
    font-size: 50px;
}

.selfie-preview img {
    height: 250px;
}

/* Instagram Input */
.form-group input[name="instagram"] {
    padding-left: 45px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23E4405F'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 20px;
}

/* Responsive for Uploads */
@media (max-width: 768px) {
    .upload-row {
        grid-template-columns: 1fr;
    }
    
    .selfie-box {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--hooters-black);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
}

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

.footer-links a {
    color: var(--hooters-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--hooters-orange);
    padding-left: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--hooters-dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hooters-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--hooters-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--hooters-dark-gray);
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--hooters-black);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .registration-container {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.position-card,
.benefit-item {
    animation: slideIn 0.6s ease forwards;
}

.position-card:nth-child(2),
.benefit-item:nth-child(2) {
    animation-delay: 0.1s;
}

.position-card:nth-child(3),
.benefit-item:nth-child(3) {
    animation-delay: 0.2s;
}

.position-card:nth-child(4),
.benefit-item:nth-child(4) {
    animation-delay: 0.3s;
}

.position-card:nth-child(5) {
    animation-delay: 0.4s;
}

.position-card:nth-child(6) {
    animation-delay: 0.5s;
}
