/* 
   undresserAU.love - Main Stylesheet
   Australian-themed design with red, navy and cream colors
*/

:root {
    --primary: #E63946; /* Red */
    --secondary: #1D3557; /* Navy Blue */
    --light: #F1FAEE; /* Cream */
    --accent1: #A8DADC; /* Light Blue */
    --accent2: #457B9D; /* Medium Blue */
    --text-dark: #1D3557;
    --text-light: #F1FAEE;
    --shadow: 0 5px 15px rgba(29, 53, 87, 0.15);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.main-wrapper {
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

/* Background Elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape1 {
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background-color: var(--primary);
}

.shape2 {
    bottom: 30%;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--secondary);
}

.shape3 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--accent1);
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

/* Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.nav-toggle-label span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--secondary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: 0.25s ease-in-out;
}

.nav-toggle-label span:nth-child(1) {
    top: 0;
}

.nav-toggle-label span:nth-child(2) {
    bottom: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    padding: 50px 0 100px;
    position: relative;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    opacity: 0.9;
    max-width: 500px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
    transition: var(--transition);
    position: relative;
}

.cta-button:hover {
    background-color: #D62B39;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(230, 57, 70, 0.4);
}

.cta-button .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: var(--transition);
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    width: calc(33.333% - 20px);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border-bottom: 5px solid var(--accent1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 53, 87, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

.step-content h3 {
    margin: 10px 0 15px;
    color: var(--secondary);
    font-size: 1.4rem;
}

.step-content p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.step-icon {
    margin-top: 15px;
}

/* Features Section */
.features-section {
    background-color: rgba(241, 250, 238, 0.4);
    position: relative;
}

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

.feature-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(29, 53, 87, 0.15);
}

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

.feature-box h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.feature-box p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--secondary);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(168, 218, 220, 0.1);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(29, 53, 87, 0.15);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    opacity: 0.8;
}

/* Footer Styles */
.site-footer {
    background-color: #111827;
    color: #f9fafb;
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h4 {
    font-size: 1.3rem;
    color: #f9fafb;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-nav h4,
.footer-legal h4 {
    color: var(--accent1);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a {
    color: #f9fafb;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(249, 250, 251, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .process-card {
        width: calc(50% - 15px);
    }
    
    .hero-section h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-section p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-toggle-label {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle:checked ~ .main-nav {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .main-nav li {
        padding: 10px 0;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .process-card {
        width: 100%;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .cta-button {
        display: block;
        width: 100%;
    }
}
