/* 
* Deep Nude Now Website Styles
* Colors: Primary #ff6b6b, Secondary #f53844
*/

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: #222;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5em;
}

a {
    text-decoration: none;
    color: #ff6b6b;
    transition: all 0.3s ease;
}

a:hover {
    color: #f53844;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #f53844);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f53844, #e61a2e);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.btn-outline:hover {
    background-color: rgba(255, 107, 107, 0.1);
    color: #f53844;
    border-color: #f53844;
}

.btn-large {
    padding: 14px 34px;
    font-size: 1rem;
}

/* Section Styles */
section {
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-heading:after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #f53844);
    margin: 15px auto;
    border-radius: 2px;
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #333;
}

.logo-icon {
    margin-right: 10px;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu li a {
    color: #555;
    font-weight: 500;
    position: relative;
}

.nav-menu li a:hover {
    color: #ff6b6b;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-button {
    background: linear-gradient(135deg, #ff6b6b, #f53844);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 20px;
}

.nav-button:hover {
    background: linear-gradient(135deg, #f53844, #e61a2e);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-visual {
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features-section {
    background-color: white;
    position: relative;
}

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

.feature-box {
    padding: 30px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f8f9fa;
    position: relative;
}

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

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr 100px;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b, #f53844);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
}

.step-content {
    padding-right: 20px;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-icon {
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

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

.faq-item {
    padding: 25px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b6b, #f53844);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    color: #f53844;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #aaa;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-group h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-group ul li {
    margin-bottom: 10px;
}

.footer-group ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-group ul li a:hover {
    color: #ff6b6b;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin: 0 auto;
        max-width: 400px;
        order: -1;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .step-item {
        grid-template-columns: 50px 1fr;
    }
    
    .step-icon {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 250px;
        height: calc(100vh - 70px);
        gap: 0;
        padding: 20px 0;
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        padding: 10px 30px;
    }
    
    .nav-menu li a {
        width: 100%;
        display: block;
    }
    
    .nav-button {
        margin: 15px 30px;
        display: inline-block;
        text-align: center;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        display: block;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    section {
        padding: 50px 0;
    }
}
