/* GothGirlCreative Website Styles - Black & Purple Theme */

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

:root {
    --primary-black: #000000;
    --deep-purple: #2d1b3d;
    --royal-purple: #4a2c5a;
    --light-purple: #6b4c7a;
    --accent-purple: #8b5a9b;
    --soft-purple: #b19cd9;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
    --gradient-purple: linear-gradient(135deg, #2d1b3d 0%, #4a2c5a 50%, #6b4c7a 100%);
}

body {
    font-family: 'Georgia', serif;
    background: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
.navbar {
    background: var(--gradient-purple);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 90, 155, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--soft-purple);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 27, 61, 0.7);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 90, 155, 0.3) 0%, transparent 70%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-light), var(--soft-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 90, 155, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--soft-purple);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-purple);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(139, 90, 155, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 90, 155, 0.5);
    border-color: var(--soft-purple);
}

/* Collections Section */
.collections {
    padding: 5rem 0;
    background: var(--primary-black);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--text-light), var(--soft-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.collection-card {
    background: var(--gradient-purple);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 90, 155, 0.2);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 90, 155, 0.4);
}

.collection-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-info {
    padding: 1.5rem;
}

.collection-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.collection-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.collection-count {
    display: inline-block;
    background: var(--soft-purple);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.collection-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-download, .btn-print {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-download {
    background: #FF0080;
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.btn-download:hover {
    background: #e6006e;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.5);
}

.btn-print {
    background: #00FFFF;
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-print:hover {
    background: #00e6e6;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

/* Custom Requests Section */
.custom-requests {
    padding: 5rem 0;
    background: var(--deep-purple);
}

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

.custom-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--soft-purple);
}

.custom-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.custom-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.custom-example {
    background: rgba(139, 90, 155, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.example-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.custom-process {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.custom-process h4 {
    color: var(--soft-purple);
    margin-bottom: 1rem;
}

.custom-process ol {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

.custom-process li {
    margin-bottom: 0.5rem;
}

.btn-custom-request {
    background: var(--gradient-purple);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 90, 155, 0.3);
}

.btn-custom-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 90, 155, 0.5);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: var(--primary-black);
    text-align: center;
}

.contact-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.contact-content a {
    color: var(--soft-purple);
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--deep-purple);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-examples {
        grid-template-columns: 1fr;
    }
    
    .collection-buttons {
        flex-direction: column;
    }
}
/* New Gallery Grid Styles */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    background-color: #1a1a1a; /* Dark background for the gallery */
    border-radius: 8px;
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes all images cover the area nicely */
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5); /* Magenta glow on hover */
}.collection-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
