/*
  Urban Life Sydney - style.css
  Theme: Retro with Volumetric UI Elements
  Color Scheme: Monochrome
  Fonts: Oswald (Headings), Nunito (Body)
*/

/* ---------------------------------- */
/*          CSS Variables             */
/* ---------------------------------- */
:root {
    /* Monochrome Color Palette */
    --color-background: #E0E5EC; /* Light grey, main background */
    --color-background-dark: #2C2C2E; /* Dark grey for contrast sections */
    --color-text: #333333; /* Dark grey for primary text on light background */
    --color-text-light: #F0F0F0; /* Light grey for text on dark background */
    --color-primary: #5A5A5A; /* A neutral grey for accents */
    --color-primary-dark: #404040;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Volumetric Shadows */
    --shadow-light: rgba(255, 255, 255, 0.7);
    --shadow-dark: rgba(163, 177, 198, 0.6);
    --box-shadow-neumorphic: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --box-shadow-neumorphic-inset: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);

    /* Typography */
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    /* Spacing & Sizing */
    --header-height: 80px;
    --border-radius: 15px;
    --transition-speed: 0.3s ease;
}

/* ---------------------------------- */
/*          Global Styles             */
/* ---------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-secondary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---------------------------------- */
/*         Layout & Helpers           */
/* ---------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column {
    flex: 1;
    padding: 0 15px;
    min-width: 280px; /* Prevent columns from getting too narrow */
}

.columns.is-centered {
    justify-content: center;
}

.column.is-two-thirds {
    flex: none;
    width: 66.666%;
}

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

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

/* ---------------------------------- */
/*       Typography & Titles          */
/* ---------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-text);
    text-shadow: 1px 1px 2px var(--shadow-dark);
}

.section-dark .section-title {
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
    line-height: 1.8;
}

p {
    margin-bottom: 1rem;
}

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

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

/* ---------------------------------- */
/*          Header & Navbar           */
/* ---------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(224, 229, 236, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: var(--header-height);
    transition: background-color var(--transition-speed);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.navbar-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
}

.navbar-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 1rem;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-speed);
}

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

.navbar-burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
}

.navbar-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar-burger span:nth-child(1) { top: 0; }
.navbar-burger span:nth-child(2) { top: 10px; }
.navbar-burger span:nth-child(3) { top: 20px; }

.navbar-burger.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.navbar-burger.is-active span:nth-child(2) { opacity: 0; }
.navbar-burger.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------------------------------- */
/*           Hero Section             */
/* ---------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

/* ---------------------------------- */
/*       Global Button Styles         */
/* ---------------------------------- */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    background-color: var(--color-background);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-neumorphic);
    transition: all var(--transition-speed);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    color: var(--color-primary-dark);
}

.cta-button:active {
    box-shadow: var(--box-shadow-neumorphic-inset);
    transform: translateY(1px);
}

/* ---------------------------------- */
/*           Card Component           */
/* ---------------------------------- */
.card {
    background-color: var(--color-background);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--box-shadow-neumorphic);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.card-image {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* For logos in press cards */
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

/* ---------------------------------- */
/*         Features Section           */
/* ---------------------------------- */
.features-grid {
    gap: 2rem 0; /* Vertical gap */
}

.animated-icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    color: var(--color-text);
    box-shadow: var(--box-shadow-neumorphic-inset);
    font-size: 1rem;
}

/* ---------------------------------- */
/*          Media Section             */
/* ---------------------------------- */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform var(--transition-speed);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* ---------------------------------- */
/*         Clientele/Stats Section    */
/* ---------------------------------- */
.stats-widgets {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.stat-widget {
    background: var(--color-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-neumorphic);
    min-width: 250px;
    flex: 1;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-primary-dark);
}

.stat-label {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.progress-indicator {
    width: 100%;
    height: 10px;
    background-color: var(--color-background);
    border-radius: 5px;
    box-shadow: var(--box-shadow-neumorphic-inset);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 5px;
}

/* ---------------------------------- */
/*           Press Section            */
/* ---------------------------------- */
.press-card {
    justify-content: flex-start;
}

.press-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-light);
    border: none;
    padding: 0;
    margin: 0;
}

.press-logo {
    filter: grayscale(1) brightness(2); /* Make logos visible on dark bg */
}

/* ---------------------------------- */
/*         External Resources         */
/* ---------------------------------- */
.resource-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-background);
    color: var(--color-primary-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-neumorphic);
    transition: all var(--transition-speed);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.resource-link:hover {
    transform: translateY(-3px);
}

/* ---------------------------------- */
/*           Contact Section          */
/* ---------------------------------- */
.contact-form {
    max-width: 700px;
    margin: 2rem auto 0;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: var(--color-background-dark);
    box-shadow: var(--box-shadow-neumorphic-inset);
    color: var(--color-text-light);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: inset 3px 3px 6px #1e1e20, inset -3px -3px 6px #3a3a3c, 0 0 0 2px var(--color-primary);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(240, 240, 240, 0.7);
    transition: all var(--transition-speed);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -25px;
    left: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-form .cta-button {
    width: 100%;
    color: var(--color-text-light);
    background-color: var(--color-primary);
}

.contact-form .cta-button:hover {
    background-color: var(--color-primary-dark);
}

.contact-form .cta-button:active {
    box-shadow: none;
    background-color: var(--color-primary-dark);
}

/* ---------------------------------- */
/*             Footer                 */
/* ---------------------------------- */
.site-footer {
    background-color: var(--color-background-dark);
    color: rgba(240, 240, 240, 0.8);
    padding: 4rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links, .footer-socials {
    list-style: none;
}

.footer-links a, .footer-socials a {
    color: rgba(240, 240, 240, 0.8);
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover, .footer-socials a:hover {
    color: var(--color-white);
}

/* ---------------------------------- */
/*         Static/Other Pages         */
/* ---------------------------------- */
.page-header {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 2rem;
}

.content-block {
    padding-top: 2rem;
}

.content-block h2, .content-block h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.content-image {
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow-neumorphic);
}

.contact-page-wrapper {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px;
}
.map-placeholder img {
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.success-icon {
    font-size: 5rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-neumorphic);
}

/* ---------------------------------- */
/*        Responsive Design           */
/* ---------------------------------- */
@media (max-width: 1024px) {
    .column.is-two-thirds {
        width: 80%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 4rem 0;
    }

    .columns {
        flex-direction: column;
        margin: 0;
    }

    .column {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .column:last-child {
        margin-bottom: 0;
    }

    .column.is-two-thirds {
        width: 100%;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--color-background);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .navbar-menu.is-active {
        display: flex;
    }
    .navbar-links {
        flex-direction: column;
        width: 100%;
    }
    .nav-link {
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
    .navbar-burger {
        display: block;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}