* {
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Roboto', sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
    position: relative;

}

/* Subtle Gold Particles Graphic */
.page-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

/* Navbar - Fixed Across All Sizes */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(26, 26, 26, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2em;
    color: #d4a373;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4a373;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #d4a373;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px;
    min-height: 100vh;
    background: linear-gradient(135deg, #2d2d2d 20%, #d4a373 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.hero-content h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3.8em;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.4em;
    color: #ccc;
    margin-bottom: 40px;
}

.btn-primary {
    background: #d4a373;
    color: #1a1a1a;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    color: #d4a373;
    transform: translateY(-3px);
}

.hero-flipbook {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.flipbook-preview {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.flip-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flip-page.active {
    opacity: 1;
}

/* Features Section (Home and Features Page) */
.features,
.features-section {
    padding: 100px 60px;
    background: #252525;
    text-align: center;
    position: relative;
}

.features h2,
.features-section h1,
.gallery h1,
.contact h1,
.login h1,
.signup h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8em;
    color: #d4a373;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #2d2d2d;
    padding: 40px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
}

.features-header {
    padding: 150px 60px 100px;
    background: linear-gradient(120deg, #2d2d2d 30%, #d4a373 100%);
    text-align: center;
    color: #fff;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3.5em;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: #d4a373;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1em;
    color: #ccc;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Gallery Section */
.gallery {
    padding: 100px 60px;
    background: #1a1a1a;
    text-align: center;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 100px 60px;
    background: #252525;
    text-align: center;
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #d4a373;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info a {
    color: #d4a373;
    text-decoration: none;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 1em;
    background: #2d2d2d;
    color: #fff;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background: #d4a373;
    color: #1a1a1a;
    padding: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #b5895e;
}

/* Login Section */
.login {
    padding: 120px 60px;
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: #252525;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.signup-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: #252525;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.login-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.login-form {
    position: relative;
    z-index: 2;
    text-align: center;
}

.login-form h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5em;
}

.login-form p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

.login-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="number"] {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 1em;
    background: #2d2d2d;
    color: #fff;
}

.login-form select {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 1em;
    background: #2d2d2d;
    color: #fff;
}

.login-form button {
    color: #1a1a1a;
    padding: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* .login-form button:hover {
    background: #b5895e;
    transform: scale(1.05); */
/* } */

.signup-link {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}

.signup-link a {
    color: #d4a373;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Signup Section */
.signup {
    padding: 120px 60px;
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.signup-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.signup-form {
    position: relative;
    z-index: 2;
    text-align: center;
}

.signup-form h1 {
    font-size: 2.5em;
}

.signup-form p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

.signup-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-form input {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 1em;
    background: #2d2d2d;
    color: #fff;
}



.signup-form select {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 1em;
    background: #2d2d2d;
    color: #fff;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23d4a373" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    cursor: pointer;
}

.signup-form select:focus {
    outline: none;
    border-color: #d4a373;
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.5);
}

.signup-form select option {
    background: #2d2d2d;
    color: #fff;
}

.login-link {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}

.login-link a {
    color: #d4a373;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Call-to-Action */
.cta {
    padding: 80px 60px;
    background: #2d2d2d;
    text-align: center;
    color: #fff;
    position: relative;
}

.cta h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: #d4a373;
    color: #1a1a1a;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-secondary:hover {
    background: #fff;
    color: #d4a373;
    transform: scale(1.05);
}

/* Pricing Section */
.pricing {
    padding: 120px 60px;
    background: #252525;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.plan-heading {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8em;
    color: #d4a373;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 163, 115, 0.3);
}

.plan-para {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 20px;
}

.plan-para:last-of-type {
    margin-bottom: 20px;
}

.plan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.free {
    background: linear-gradient(135deg, #2d2d2d 0%, #555 100%);
    border: 2px solid #555;
}

.startup {
    background: linear-gradient(135deg, #333 0%, #808080 100%);
    border: 2px solid #c0c0c0;
}

.professional {
    background: linear-gradient(135deg, #5c4a00 0%, #d4a373 100%);
    border: 2px solid #d4a373;
    animation: pulse 3s infinite;
}

.enterprise {
    background: linear-gradient(135deg, #2d2d2d 0%, #d4a373 50%);
    border: 2px solid #d4a373;
}

.card-header {
    padding: 25px 20px;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    width: 120px;
    background-color: #ff0054;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 0;
    z-index: 1;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.professional .ribbon {
    background-color: #ff9900;
}

.plan-name {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.currency {
    font-size: 1.3rem;
    font-weight: 500;
    vertical-align: top;
}

.base-price {
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 5px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.period {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.daily-rate {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.card-body {
    padding: 20px;
}

.plan-details {
    margin-bottom: 20px;
}

.li {
    padding: 10px 15px;
    position: relative;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    border-radius: 8px;
}

.li:before {
    content: "✓";
    color: #00ff00;
    margin-right: 10px;
    font-weight: bold;
}

.li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.special {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.card-footer {
    padding: 20px;
    text-align: center;
}

.pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    background: #d4a373;
}

.pay-btn:hover {
    background: #fff;
    color: #d4a373;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Minimal Footer */
.footer-copy {
    text-align: center;
    font-size: 0.9em;
    color: #999;
    padding: 20px;
    padding-bottom: auto;
    background: #1a1a1a;
    position: relative;
    z-index: 2;
}

/* Login Selection Section (Specific to login-selection.html) */
.error {
    color: red;
    margin-bottom: 1rem;
    text-align: center;
}

.login-selection {
    padding-top: 80px;
    /* Adjusted for navbar */
    padding-bottom: 60px;
    /* Space for footer */
}

.selection-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.selection-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.selection-header {
    margin-bottom: 40px;
}

.selection-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* .selection-card {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
} */

.studio {
    background: linear-gradient(135deg, #2d2d2d 0%, #555 100%);
    border: 2px solid #555;
}

.enterprise {
    background: linear-gradient(135deg, #5c4a00 0%, #d4a373 100%);
    border: 2px solid #d4a373;
    animation: pulse 3s infinite;
}

/* Responsive Design with Offcanvas */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.5em;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-links a {
        padding: 10px 0;
        display: block;
        font-size: 1.1em;
    }

    .hero,
    .features,
    .gallery,
    .contact,
    .login,
    .signup,
    .pricing {
        padding-top: 80px;
    }

    .hero {
        flex-direction: column;
        padding: 80px 20px;
        text-align: center;
    }

    .hero-content,
    .hero-flipbook {
        max-width: 100%;
    }

    .hero-flipbook {
        margin-top: 40px;
    }

    .feature-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .contact-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .login,
    .signup {
        padding: 80px 20px;
    }

    .login-container,
    .signup-container {
        padding: 20px;
    }

    .pricing {
        padding: 80px 20px;
    }

    .plan-container {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }

    .plan-heading {
        font-size: 2rem;
    }

    .login-selection {
        padding-top: 60px;
    }

    .selection-grid {
        flex-direction: column;
        align-items: center;
    }

    /* .selection-card {
        width: 100%;
        max-width: 400px;
    } */
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



