/* 
   Australian Website Style - nudeifyAU.site
   Colors inspired by Australian landscape and flag:
   - Navy Blue: #00008B (dark blue)
   - Red: #FF0000
   - Green: #006400 (Australian green)
   - Gold: #FFBF00 (Australian gold)
*/

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #00008B;
}

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

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #FF0000, #FFBF00);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: #006400;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

a:hover {
    color: #FF0000;
}

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.section {
    padding: 80px 0;
    position: relative;
}

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

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #00008B;
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 139, 0.2);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 139, 0.3);
    color: white;
    background: #000066;
}

.btn-red {
    background: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.btn-red:hover {
    background: #d60000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.btn-gold {
    background: #FFBF00;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.2);
}

.btn-gold:hover {
    background: #f0b400;
    box-shadow: 0 6px 20px rgba(255, 191, 0, 0.3);
    color: #333;
}

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

.btn-outline:hover {
    background: #00008B;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00008B;
}

.logo svg {
    margin-right: 12px;
}

.logo-text {
    background: linear-gradient(45deg, #00008B, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    font-weight: 600;
    color: #333;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu li a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #00008B, #FF0000);
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-menu li a:hover:before {
    visibility: visible;
    width: 100%;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: linear-gradient(to right, #00008B, #FF0000);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300008B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-flag-colors {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    display: flex;
}

.hero-flag-colors div {
    height: 100%;
    flex: 1;
}

.hero-flag-colors div:nth-child(1) {
    background-color: #00008B;
}

.hero-flag-colors div:nth-child(2) {
    background-color: #FF0000;
}

.hero-flag-colors div:nth-child(3) {
    background-color: #FFBF00;
}

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

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

.feature-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 139, 0.03) 0%, rgba(0, 0, 139, 0.06) 100%);
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #00008B;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 0, 139, 0.1), rgba(255, 0, 0, 0.1));
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

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

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    counter-reset: steps;
}

.step {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step:before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00008B, #0000A0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 139, 0.2);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, rgba(0, 0, 139, 0.03) 0%, rgba(0, 0, 139, 0.06) 100%);
}

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

.benefit-card {
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.benefit-icon {
    margin-right: 20px;
    min-width: 50px;
}

.benefit-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.benefit-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

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

.accordion {
    margin-top: 50px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #00008B;
}

.accordion-header {
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #00008B;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header:hover {
    background-color: rgba(0, 0, 139, 0.03);
}

.accordion-header:after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    color: #00008B;
}

.accordion-item.active .accordion-header:after {
    content: '−';
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.accordion-body {
    padding: 0 20px 20px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, #00008B, #000066);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L24 12H36L26 20L30 32L20 24L10 32L14 20L4 12H16L20 0Z' fill='white'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta h2:after {
    background: linear-gradient(to right, #FF0000, #FFBF00);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    padding: 70px 0 20px;
    position: relative;
}

.footer-waves {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves path {
    fill: #111;
}

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

.footer-about {
    margin-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 10px;
    color: white;
    background: linear-gradient(45deg, #FFBF00, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background: linear-gradient(to right, #FF0000, #FFBF00);
}

.footer-links {
    list-style: none;
    margin: 0;
}

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

.footer-links a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        padding: 30px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .features-grid, .steps, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}
