/*
Theme Name: The Urbane Collective
Description: A professional WordPress theme for The Urbane Collective co-working space
Version: 1.0
Author: Cloned from theurbanecollective.net
Text Domain: urbane-collective
*/

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

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

/* Header */
.header {
    background: #000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.book-btn, .cta-btn, .pay-btn, .check-btn, .directions-btn {
    background: linear-gradient(45deg, #8B4A9C, #F4B942);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
}

.book-btn:hover, .cta-btn:hover, .pay-btn:hover, .check-btn:hover, .directions-btn:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #8B4A9C, #F4B942);
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Building Section */
.building-section {
    text-align: center;
    padding: 50px 0;
    background: #000;
}

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

/* About Section */
.about {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    color: #B8860B;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.address h3 {
    color: #8B4A9C;
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Description Section */
.description {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.description h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.description p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f5f5f5;
    padding: 80px 0;
}

.services h2 {
    color: #B8860B;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item h4 {
    color: #8B4A9C;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-item p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Space Section */
.space-section {
    background: #ccc;
    padding: 100px 0;
    text-align: center;
    color: white;
    background-image: url("<?php echo get_template_directory_uri(); ?>/images/the_urbane_collective_interior_2.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.space-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.space-section .container {
    position: relative;
    z-index: 1;
}

.space-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Payments Section */
.payments {
    background: white;
    padding: 80px 0;
}

.payments-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.payments-logo {
    flex: 1;
    min-width: 300px;
}

.payments-logo img {
    width: 100%;
    max-width: 400px;
}

.payments-text {
    flex: 1;
    min-width: 300px;
}

.payments-text h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.payments-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f5f5f5;
    padding: 80px 0;
}

.contact h2 {
    color: #B8860B;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.contact h3 {
    color: #B8860B;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info h4 {
    color: #B8860B;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info a {
    color: #8B4A9C;
    text-decoration: none;
}

.contact-info button {
    margin: 10px;
}

.map {
    text-align: center;
}

.map img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Newsletter Section */
.newsletter {
    background: #333;
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: url("<?php echo get_template_directory_uri(); ?>/images/the_urbane_collective_interior_3.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    color: #B8860B;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form button {
    background: #F4B942;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* WordPress specific styles */
.wp-block-group {
    margin: 0;
}

.wp-block-image {
    margin: 0;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* WordPress admin bar compatibility */
.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery img {
        width: 100%;
        max-width: 400px;
    }
    
    .payments-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 200px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .about h2, .services h2, .contact h2, .newsletter h2 {
        font-size: 2rem;
    }
    
    .space-section h2 {
        font-size: 1.8rem;
    }
}

