:root {
    --background-dark: #1D1B1A;
    --background-header: #161514;
    --text-light: #FDDBD6;
    --text-dark: #B0AFAFE;
    --card-background: #2A2827;
    --card-hover-background: #3A3938;
    --gradient-start: rgba(253, 219, 214, 0.8);
    --gradient-end: rgba(176, 175, 174, 0.8);
}

body {
    background-color: var(--background-dark);
    font-family: 'Lato', sans-serif;
    color: var(--text-light);
    min-height: 100vh;
}

/* Modern Navigation Styles */
.navbar {
    background-color: rgba(22, 21, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid rgba(253, 219, 214, 0.05);
}

.navbar .container-fluid {
    max-width: 1600px;
    padding: 0 2rem;
    margin: 0 auto;
}

.navbar-brand {
    color: #FFFFFF !important;
    font-size: 1.4rem;
    letter-spacing: 1.2px;
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    margin-right: 3rem;
}

.navbar-nav {
    gap: 0.0rem;
}

.nav-link {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    padding: 0.4rem 1rem !important;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.9;
    letter-spacing: 0.6px;
    font-weight: 400;
    border-radius: 6px;
}

.nav-link:hover {
    opacity: 1;
    background: rgba(253, 219, 214, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-light), transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    height: 2px;
    width: 24px;
    background-color: var(--text-light);
    transition: transform 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

/* Active state */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(4px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-4px) rotate(-45deg);
}

/* Hover effect */
.navbar-toggler:hover {
    transform: scale(1.1);
}

.nav-btn {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(253, 219, 214, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: left;
    padding-left: 2rem;
    padding-top: 4rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FDDBD6 0%, #B0AFAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    max-width: 40%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto;
}

.release-btn {
    display: inline-block;
    background: var(--text-light);
    color: var(--background-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.9;
    text-decoration: none;
}

.release-btn:hover {
    transform: translateY(-2px);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Modern Modal Styles */
.custom-modal {
    background-color: rgba(42, 40, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 219, 214, 0.1);
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid rgba(253, 219, 214, 0.1);
    padding: 1rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(253, 219, 214, 0.1);
    padding: 1rem 1.5rem;
}

.custom-btn {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--background-dark);
    border: none;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.custom-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--background-dark);
}

/* Features Section */
.features-section {
    background-color: #161514;
    padding: 3rem 0;
    position: relative;
    min-height: auto;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(253, 219, 214, 0.1) 50%, transparent 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FDDBD6 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-card {
    background: rgba(42, 40, 39, 0.5);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 219, 214, 0.2), transparent);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FDDBD6, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.feature-title {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 280px;
}

/* Gallery Section */
.gallery-section {
    background-color: #1D1B1A;
    padding: 4rem 2rem;
    position: relative;
}

.gallery-section .container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-section .row {
    margin: 0 -0.125rem;
    display: flex;
    justify-content: center;
}

.gallery-section .col-md-3 {
    padding: 0 0.125rem;
    width: auto;
    flex: none;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.gallery-image {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 600px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
    padding: 3rem 1.5rem 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-overlay h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay h3 {
    transform: translateY(0);
}


.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: #161514;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(253, 219, 214, 0.1);
    border-radius: 12px;
    background: #1D1B1A;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(253, 219, 214, 0.2);
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #FDDBD6;
    font-weight: 500;
}

.faq-icon {
    color: #FDDBD6;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.25rem;
}

.faq-answer p {
    color: #B0AFAF;
    line-height: 1.6;
    padding-bottom: 1.25rem;
    margin: 0;
}

.faq-item.active {
    background: #2A2827;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 4rem 0 0;
    position: relative;
    width: 100%;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        margin-top: 0;
        padding: 1.5rem 0;
    }

    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom .text-end {
        text-align: center !important;
    }
}

.footer h4 {
    font-weight: 600;
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a,
.footer-bottom a {
    color: #B0AFAF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a::after,
.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #FDDBD6;
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: #FDDBD6;
}

.footer-links a:hover::after,
.footer-bottom a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #B0AFAF;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-links a:hover {
    color: #FDDBD6;
    transform: translateY(-3px);
}

.footer-contact li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    color: #FDDBD6;
}

.footer-contact i {
    color: #FDDBD6;
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
}

.footer-divider {
    margin: 0;
    border: none;
    height: 3px;
    background: var(--background-header);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-bottom {
    font-size: 0.95rem;
    background: var(--background-header);
    padding: 1.5rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-bottom .container {
    padding-top: 0;
    padding-bottom: 0;
}

.footer-bottom p {
    color: #B0AFAF;
}

/* Rounded Corners */
.round-left {
    border-radius: 32px 0 0 32px;
}

.round-right {
    border-radius: 0 32px 32px 0;
}

/* Remove rounded corners on mobile */
@media (max-width: 768px) {
    .round-left,
    .round-right {
        border-radius: 8px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .feature-card {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        max-width: 300px;
        margin: 2rem auto;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .gallery-image {
        height: 400px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 6rem 0 3rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        max-width: 250px;
        margin: 2rem auto;
    }

    .features-section {
        padding: 3rem 0;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-image {
        height: 300px;
        margin-bottom: 1rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

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

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 200px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .gallery-image {
        height: 250px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .feature-card:hover {
        transform: none;
    }

    .gallery-image:hover {
        transform: none;
    }

    .footer-links li:hover {
        transform: none;
    }

    .social-links a:hover {
        transform: none;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container-fluid {
        padding: 0 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        text-align: center;
        padding: 0.8rem !important;
        margin: 0.2rem 0;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .custom-btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-nav {
        background: var(--background-header);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-image {
        margin-top: 2rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

/* Features Section Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Gallery Section Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-image {
        height: 300px;
    }

}

/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

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

    .footer-links li {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom .row > div {
        text-align: center !important;
        margin: 0.5rem 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-card,
    .faq-item {
        margin-bottom: 1rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    /* Remove rounded corners on mobile */
    .feature-card,
    .gallery-image,
    .faq-item,
    .navbar-nav,
    .btn {
        border-radius: 8px !important;
    }

    /* Ensure footer is visible */
    .footer {
        position: relative;
        width: 100%;
        bottom: 0;
        padding: 3rem 0 1rem;
        margin-top: 3rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.5rem 0;
        width: 100%;
        position: relative;
        bottom: 0;
    }

    .footer-content {
        margin-bottom: 2rem;
    }

    /* Adjust container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
