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

/* Base */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #e0e0e0;
    line-height: 1.8;
}
h2 {
    margin-bottom: 20px;
    color: #08f;
    font-size: 2.5rem;
    font-weight: 700;
}
p {
    margin: 15px 0;
    line-height: 1.8;
}
input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #1a1a1a;
    color: #e0e0e0;
}
button {
    color: #000;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #1a1a1a;
    color: #e0e0e0;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path fill="%23e0e0e0" d="M0 0l5 6 5-6H0z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
}
input:focus, select:focus {
    outline: none;
    border-color: #08f;
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.6);
}

/* Header */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 3000;
    max-height: 70px;
}
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
nav a {
    text-decoration: none;
    color: #08f;
    font-weight: 600;
}
nav a:hover {
    color: #0ff;
}
.menu-toggle {
    display: none;
    color: #08f;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}
.menu-toggle.open {
    color: #0ff;
}
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}
.social-icons a {
    color: #08f;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    color: #0ff;
    transform: scale(1.1);
}

/* Car in Header */
.car-container {
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    z-index: 999;
    visibility: hidden; 
    transition: left 0.1s linear;
}

.car {
    width: 50px;
    height: auto;
}

/* Hero */
.hero {
    position: relative;
    background: url("../images/background.jpeg") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #08f;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
    background-attachment: fixed;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}
.hero div {
    position: relative;
    z-index: 2; 
}
.hero h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    animation: slideIn 1s ease-in-out;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #08f, #0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    
}
.hero p {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out;
    color: #e0e0e0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}


/* Container and Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section {
    margin: 50px 0;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    animation: slideIn 1s ease-in-out;
}

/* About */
#about p {
    margin-bottom: 20px;
}
#about ul {
    margin: 10px 0 0 20px;
    padding: 0;
    list-style-type: none;
}
#about ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
#about ul li::before {
    content: "🚩";
    position: absolute;
    left: 0;
    top: 2px;
    color: #08f;
}
#about ul ul {
    margin-top: 10px;
    padding-left: 20px;
}
#about ul ul li::before {
    content: "📍";
    font-size: 1rem;
}

/* VIP */
#vip {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}
#vip h2 {
    color: #f5d742;
}
#vip ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}
#vip ul li {
    margin-bottom: 10px;
    padding-left: 40px; 
    position: relative;
    font-size: 1rem;
}
#vip ul li::before {
    content: "⭐️"; 
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem; 
    color: #f5d742; 
}
.vip-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    overflow-x: auto; 
    overflow-y: hidden;
}
.vip-gallery img {
    flex-shrink: 0; 
    width: 30%; 
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vip-gallery img:hover {
    transform: scale(1.05);
}
.vip-booking-button {
    background: linear-gradient(135deg, #f5d742, #f7e07f);
}
.vip-booking-button:hover {
    background: linear-gradient(135deg, #f7e07f, #f5d742);
}

/* Prices */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #1a1a1a;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    overflow: hidden;
}
#prices h3 {
    margin-top: 20px;
}
#prices h2 {
    margin-bottom: -10px;
}
table thead {
    background-color: #08f;
    color: #000;
}
table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}
table tbody tr:hover {
    background-color: #2d2d2d;
}
table tbody tr:last-child td {
    border-bottom: none;
}
table td {
    color: #e0e0e0;
    font-size: 1rem;
    width: 50%;
}
table tbody tr:nth-child(even) {
    background-color: #1f1f1f;
}
th:first-child,
td:first-child {
    width: 70%;
}

/* Booking */
.booking-form {
    background-color: #2d2d2d;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}
.booking-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}
.booking-form-group {
    margin-bottom: 20px;
}
.booking-form button {
    background: linear-gradient(135deg, #08f, #0ff);
}
.booking-form button:hover {
    background: linear-gradient(135deg, #0ff, #08f);
}

/* FAQ*/
.faq-question {
    background-color: #444;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: left;
}
.faq-question:hover {
    background-color: #666; 
    color: #000; 
}
.faq-answer {
    padding: 10px;
    background-color: #1a1a1a;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    color: #e0e0e0;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #888;
}

.company-details p {
    margin: 0;
}

@media (max-width: 768px) {
    .company-details {
        flex-direction: column;
        gap: 5px;
    }
}

/* Pop-Up Screen */
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #e0e0e0;
    padding: 30px;
    border: 1px solid #444;
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}
#popup.show {
    display: block;
}
#popup button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #08f, #0ff); /* Accent gradient */
    color: #000; /* Dark text for contrast */
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
#popup button:hover {
    background: linear-gradient(135deg, #0ff, #08f); /* Reverse gradient on hover */
}

@media (max-width: 768px) {
    /* Base */
    p {
        font-size: 1rem !important;
    }
    h2 {
        font-size: 1.5rem !important;
    }
    /* Header */
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        display: none;
        padding: 10px;
        z-index: 1000;
    }
    nav ul.open {
        display: flex;
    }
    nav ul li {
        text-align: center;
        margin: 0px;
    }
    nav a {
        margin: 5px 0;
    }
    .menu-toggle {
        display: block;
    }

    /* Hero */
    .hero {
        background: url("../images/background.jpeg") no-repeat center center/cover;
        height: 100vh;
    }
    
    /* Container and Section */
    .section {
        margin: 15px 0;
        padding: 15px;
    }

    /* VIP */
    .vip-gallery {
        display: flex;
        gap: 15px;
        overflow-x: scroll;
    }
    .vip-gallery img {
        width: 80%;
    }

    /* Prices */
    table td {
        font-size: 0.8rem;
    }
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Giveaway Section Styles (unified with other cards) */
.giveaway-section {
    /* No custom padding here, inherit from .section */
}
.giveaway-content {
    max-width: 650px;
    margin: 40px auto;
    padding: 2.5rem 2rem;
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.7);
}
.giveaway-title {
    color: #08f;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.giveaway-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.giveaway-info ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.giveaway-info li {
    margin-bottom: 0.7rem;
    color: #b0b0b0;
    font-size: 1rem;
}
.giveaway-info a {
    color: #0af;
    text-decoration: underline;
}
.giveaway-note {
    font-style: italic;
    color: #f5d742;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.giveaway-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.form-group label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.form-group input[type="text"] {
    background: #222;
    color: #fff;
    border: 1px solid #333;
}
.form-group input[type="file"] {
    background: #222;
    color: #fff;
    border: 1px solid #333;
}
.preview-container {
    margin-top: 0.7rem;
    text-align: center;
}
.preview-container img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    max-width: 100%;
    max-height: 220px;
}
.submit-button {
    background: linear-gradient(90deg, #08f, #0af);
    color: #fff;
    border: none;
    padding: 1rem 0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.submit-button:hover {
    background: linear-gradient(90deg, #0af, #08f);
}
@media (max-width: 900px) {
    .giveaway-content {
        max-width: 98vw;
        padding: 1.2rem 0.5rem;
    }
}

/* Admin Panel Styles */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.submissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.submission-card {
    background: #181818;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s;
}
.submission-card:hover {
    box-shadow: 0 4px 24px rgba(0,136,255,0.15);
}
.submission-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.submission-card img:hover {
    box-shadow: 0 2px 16px #08f3;
}
.submission-info {
    color: #e0e0e0;
    margin-bottom: 10px;
}
.submission-info p {
    margin: 6px 0;
}
.submission-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.delete-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}
.delete-button:hover {
    background: #c82333;
}
.export-excel-button {
    background: linear-gradient(90deg, #08f, #0af);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 18px;
    margin-top: 8px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,136,255,0.08);
}
.export-excel-button:hover {
    background: linear-gradient(90deg, #0af, #08f);
}
#export-result {
    margin-bottom: 18px;
    color: #08f;
    font-size: 1rem;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.back-button {
    background: #08f;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.back-button:hover {
    background: #006699;
}
.empty-state {
    text-align: center;
    color: #e0e0e0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 10px;
}
@media (max-width: 700px) {
    .submissions-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .admin-header {
        flex-direction: column;
        gap: 10px;
    }
    .export-excel-button {
        width: 100%;
    }
}

.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    background: #181818;
    color: #e0e0e0;
    font-size: 1rem;
    min-width: 600px;
}
.admin-table th, .admin-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #333;
    text-align: left;
    vertical-align: middle;
}
.admin-table th {
    background: #111c;
    color: #08f;
    font-weight: 700;
}
.admin-table tr:hover {
    background: #232323;
}
.admin-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 4px #0008;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.admin-thumb:hover {
    box-shadow: 0 2px 12px #08f8;
}
@media (max-width: 700px) {
    .admin-table th, .admin-table td {
        padding: 6px 2px;
        font-size: 0.95rem;
    }
    .admin-thumb {
        width: 36px;
        height: 36px;
    }
}
.admin-table th:nth-child(1), .admin-table td:nth-child(1) {
    width: 36px;
    min-width: 28px;
    padding-left: 8px;
    padding-right: 4px;
    text-align: right;
}
.admin-table th:nth-child(2), .admin-table td:nth-child(2) {
    padding-left: 4px;
}
.admin-table th:nth-child(3), .admin-table td:nth-child(3) {
    min-width: 170px;
    width: 20%;
    white-space: nowrap;
}

.giveaway-emoji {
    color: #f5d742;
    font-weight: 700;
    font-size: 1.1em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.giveaway-prize, .giveaway-date {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid #333;
}

.giveaway-prize h3, .giveaway-date h3 {
    color: #f5d742;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.giveaway-prize p, .giveaway-date p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .giveaway-prize, .giveaway-date {
        padding: 1rem;
        margin: 1rem 0;
    }
}