/* Main Styles for NUR Website */

/* Global Styles */
:root {
    --primary-color: #1a5f9c;
    --secondary-color: #daa520;
    --accent-color: #4caf50;
    --dark-blue: #0a3d6d;
    --light-blue: #e9f0f7;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--dark-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-gray);
}

.btn-secondary:hover {
    background-color: #c69500;
    color: var(--dark-gray);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    padding: 2px;
    border-radius: 4px;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 30px;
}

.main-menu a {
    color: var(--white);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.main-menu a:hover {
    color: var(--secondary-color);
}

.main-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/backgrounds/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 200px 0 150px;
    margin-top: 60px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Categories Styles */
.product-categories {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    color: var(--primary-color);
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.category-card p {
    padding: 0 20px 20px;
    color: var(--gray);
}

.category-card .btn {
    margin: 0 20px 20px;
}

/* Featured Products Styles */
.featured-products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Australian Quality Styles */
.australian-quality {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.quality-content {
    text-align: center;
}

.quality-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quality-feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.quality-feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.quality-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials Styles */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 0 15px;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Newsletter Styles */
.newsletter {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--gray);
    padding-top: 20px;
}

.footer-bottom a {
    color: var(--light-gray);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 28px;
    color: #1e73be;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section h3 {
    font-size: 22px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p {
    margin-bottom: 15px;
    color: #444;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
}

.policy-section address {
    font-style: normal;
    line-height: 1.8;
    margin-top: 15px;
}

/* FAQ Page Styles */
.faq-section {
    padding: 60px 0;
}

.faq-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-search input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.faq-search button {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.faq-category-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn.active, .faq-category-btn:hover {
    background-color: #1e73be;
    color: white;
    border-color: #1e73be;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    flex: 1;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
}

.faq-answer p, .faq-answer ul, .faq-answer li {
    margin-bottom: 10px;
}

.contact-cta {
    text-align: center;
    padding: 60px 0;
    background-color: #f5f5f5;
}

.contact-cta h2 {
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-card i {
    font-size: 40px;
    color: #1e73be;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
}

.contact-form-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Where to Buy Page Styles */
.purchase-options {
    padding: 80px 0;
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.purchase-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.purchase-card:hover {
    transform: translateY(-5px);
}

.purchase-icon {
    margin-bottom: 20px;
}

.purchase-icon i {
    font-size: 48px;
    color: #1e73be;
}

.purchase-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.purchase-card p {
    color: #666;
    margin-bottom: 20px;
}

.purchase-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature i {
    color: #26a69a;
    margin-right: 10px;
}

.store-locator-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.store-search-box {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
}

.store-search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.store-search-box button {
    border-radius: 0 4px 4px 0;
}

.store-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.store-map {
    height: 400px;
    background-color: #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #666;
}

.map-placeholder i {
    font-size: 48px;
    color: #1e73be;
    margin-bottom: 15px;
}

.store-results {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.store-results h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.retailer-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.retailer-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.retailer-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e73be;
}

.retailer-item p {
    color: #666;
    margin-bottom: 5px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 14px;
    margin-top: 10px;
}

.major-retailers {
    padding: 80px 0;
}

.retailer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.retailer-logo {
    text-align: center;
}

.retailer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.retailer-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.retailer-logo span {
    display: block;
    color: #666;
}

.international-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.international-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.region {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.region h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.distributor {
    margin-bottom: 25px;
}

.distributor:last-child {
    margin-bottom: 0;
}

.distributor h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e73be;
}

.distributor p {
    color: #666;
    margin-bottom: 5px;
}

.online-help {
    text-align: center;
    padding: 60px 0;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

/* Health Education Page Styles */
.health-education-content {
    padding: 80px 0;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.education-card h2 {
    font-size: 22px;
    padding: 20px;
    margin: 0;
    background-color: #1e73be;
    color: white;
}

.education-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.education-card .content {
    padding: 20px;
}

.education-card p {
    margin-bottom: 15px;
    color: #444;
}

.education-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.education-card li {
    margin-bottom: 8px;
    color: #444;
}

.nutrition-facts {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fact {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fact h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e73be;
}

.fact p {
    color: #666;
}

.resources {
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-item i {
    font-size: 40px;
    color: #1e73be;
    margin-bottom: 20px;
}

.resource-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.resource-item p {
    color: #666;
    margin-bottom: 20px;
} 