/* Island Merch - Dark, Ominous Theme */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Mono', monospace;
    background: #0a0a0a;
    color: #d4d4d4;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5rem;
    color: #d4d4d4;
}

h2 {
    font-size: 2rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    color: #e0e0e0;
}

p {
    margin-bottom: 1rem;
    color: #a0a0a0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a0a0a;
    border-bottom: 2px solid #1a1a1a;
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #d4d4d4;
    letter-spacing: 4px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: #8b0000;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
}

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

.nav a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #8b0000;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #8b0000;
    color: #d4d4d4;
    border: 2px solid #8b0000;
}

.btn-primary:hover {
    background: transparent;
    color: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #d4d4d4;
    border: 2px solid #d4d4d4;
}

.btn-secondary:hover {
    background: #8b0000;
    color: #d4d4d4;
    border-color: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
}

.product-image {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border: 2px solid #1a1a1a;
    padding: 30px;
}

.product-placeholder {
    width: 100%;
    max-width: 400px;
}

.product-info {
    text-align: center;
}

.product-title {
    font-size: 2rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.product-description {
    color: #a0a0a0;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.product-price {
    font-size: 2rem;
    color: #8b0000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.product-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.size-select,
.quantity-select {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.size-select label,
.quantity-select label {
    font-size: 0.8rem;
    color: #8b0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-select select,
.quantity-select select {
    background: #0a0a0a;
    color: #d4d4d4;
    border: 1px solid #2a2a2a;
    padding: 10px 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    cursor: pointer;
}

.size-select select:hover,
.quantity-select select:hover {
    border-color: #8b0000;
}

.product-note {
    font-size: 0.8rem;
    color: #606060;
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.disclaimer {
    margin-top: 3rem;
    padding: 20px;
    border-top: 2px solid #2a2a2a;
    border-bottom: 2px solid #2a2a2a;
    background: #0f0f0f;
}

.disclaimer p {
    color: #8b0000;
    font-size: 0.9rem;
}

/* Unsealed Documents Section */
.unsealed-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

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

.doc-card {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    padding: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.doc-card:hover {
    border-color: #8b0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.doc-icon {
    font-size: 3rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
    text-align: center;
}

.doc-card h3 {
    text-align: center;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
}

.doc-card p {
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 2px solid #1a1a1a;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h4 {
    color: #d4d4d4;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #8b0000;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b0000;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

.footer-bottom p {
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.legal {
    color: #606060;
    font-size: 0.7rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }
    
    .product-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .product-options {
        flex-direction: column;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

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

.hero-overlay {
    animation: fadeIn 1s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b0000;
}

/* Success Page Styles */
.success-message {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.success-title {
    font-size: 2.5rem;
    color: #d4d4d4;
    margin-bottom: 20px;
}

.success-text {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.order-details {
    background: #0f0f0f;
    border: 2px solid #2a2a2a;
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
}

.order-details h3 {
    color: #d4d4d4;
    margin-bottom: 20px;
}

.order-details p {
    color: #d4d4d4;
    margin: 10px 0;
    font-size: 1rem;
}

.order-details strong {
    color: #8b0000;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h3 {
    color: #d4d4d4;
    margin-bottom: 15px;
}

.next-steps-list {
    list-style: none;
    padding-left: 0;
}

.next-steps-list li {
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    color: #a0a0a0;
}

.next-steps-list li:before {
    content: "✓ ";
    color: #8b0000;
    font-weight: bold;
    margin-right: 10px;
}

/* Cancel Page Styles */
.cancelled-message {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.cancelled-title {
    font-size: 2.5rem;
    color: #d4d4d4;
    margin-bottom: 20px;
}

.cancelled-text {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.why-continue {
    background: #0f0f0f;
    border: 2px solid #2a2a2a;
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
}

.why-continue h3 {
    color: #d4d4d4;
    margin-bottom: 20px;
}

.why-list {
    list-style: none;
    padding-left: 0;
}

.why-list li {
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    color: #a0a0a0;
}

.why-list li:before {
    content: "● ";
    color: #8b0000;
    font-weight: bold;
    margin-right: 10px;
}

/* Checkout Form Styles */
.checkout-form {
    margin-top: 20px;
}

.checkout-form button {
    font-size: 1.1rem;
    padding: 18px 50px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #8b0000;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border-radius: 4px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}
