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

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 24px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.9;
}

.disclosure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fafafa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.section-alt {
    background: #fafafa;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.place-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.place-image {
    height: 200px;
    width: 100%;
}

.place-content {
    padding: 32px;
}

.place-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}

.place-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-own {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-friend {
    background: #f3e5f5;
    color: #7b1fa2;
}

.place-type {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 16px;
    font-weight: 500;
}

.place-description {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Tips Section */
.tips-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
}

.tips-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.tip-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.tip-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}

.tip-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-main p {
    color: #999;
    max-width: 600px;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1.05rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tips-section {
        padding: 60px 0;
    }

    .tips-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .disclosure-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .place-content {
        padding: 24px;
    }

    .place-header {
        flex-direction: column;
    }
}

/* Clickable Card Links */
.place-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.place-card-link .place-card {
    cursor: pointer;
}

.place-card-link:hover .place-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* Solid Navigation */
.nav-solid {
    position: relative;
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-solid .logo {
    color: white;
    text-decoration: none;
}

/* Business Hero */
.business-hero {
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.business-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: white;
}

.business-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Business Details */
.business-details {
    padding: 80px 0;
}

.business-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.business-description h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.business-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.business-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.info-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    color: #4a4a4a;
    border-bottom: 1px solid #eee;
}

.info-card ul li:last-child {
    border-bottom: none;
}

/* Back Link */
.back-link {
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Tips Content */
.tips-content {
    padding: 80px 0;
}

.tips-content .tips-grid {
    margin-bottom: 60px;
}

.tips-content .tip-box {
    background: #fafafa;
    border: 1px solid #e0e0e0;
}

.tips-content .tip-box h3 {
    color: #1a1a1a;
}

.tips-content .tip-box p {
    color: #4a4a4a;
}

/* Responsive - Business Pages */
@media (max-width: 768px) {
    .business-hero-content h1 {
        font-size: 2.5rem;
    }

    .business-subtitle {
        font-size: 1.1rem;
    }

    .business-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-description h2 {
        font-size: 1.8rem;
    }

    .business-description p {
        font-size: 1rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .business-hero-content h1 {
        font-size: 2rem;
    }

    .business-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.legal-text h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0 24px 24px;
    line-height: 1.8;
}

.legal-text ul li {
    color: #4a4a4a;
    margin-bottom: 8px;
}

.legal-text a {
    color: #667eea;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #764ba2;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-text h3 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

.contact-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.contact-text ul {
    margin: 16px 0 24px 24px;
    line-height: 1.8;
}

.contact-text ul li {
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-form-placeholder {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Responsive - Legal & Contact */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text h2 {
        font-size: 1.8rem;
    }

    .contact-text h3 {
        font-size: 1.2rem;
    }

    .legal-text h2 {
        font-size: 1.6rem;
    }
}

/* Google Maps */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
        margin-top: 30px;
    }
}

/* Image Gallery */
.image-gallery {
    margin: 40px 0;
}

.image-gallery h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Post Styling */
.blog-post {
    background: #ffffff;
}

.blog-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    text-align: center;
}

.blog-category {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
    font-weight: 700;
}

.blog-meta {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.blog-content {
    padding: 80px 0 100px;
    background: #ffffff;
}

.blog-text {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c2c2c;
}

.blog-text .lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 48px;
    font-weight: 400;
    border-left: 4px solid #2c5364;
    padding-left: 24px;
}

.blog-text h2 {
    font-size: 2.2rem;
    margin: 56px 0 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.blog-text h2:first-of-type {
    margin-top: 0;
}

.blog-text h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.blog-text h4 {
    font-size: 1.3rem;
    margin: 32px 0 16px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.blog-text p {
    margin-bottom: 24px;
    color: #2c2c2c;
}

.blog-text p strong {
    color: #1a1a1a;
    font-weight: 600;
}

.blog-text ul,
.blog-text ol {
    margin: 24px 0 32px 0;
    padding-left: 0;
    list-style-position: outside;
}

.blog-text ul {
    list-style-type: none;
}

.blog-text ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #2c2c2c;
}

.blog-text ul li:before {
    content: "•";
    position: absolute;
    left: 12px;
    color: #2c5364;
    font-weight: bold;
    font-size: 1.2em;
}

.blog-text ol {
    padding-left: 24px;
}

.blog-text ol li {
    margin-bottom: 16px;
    padding-left: 8px;
    line-height: 1.8;
    color: #2c2c2c;
}

.blog-text ul ul,
.blog-text ol ol,
.blog-text ul ol,
.blog-text ol ul {
    margin: 12px 0;
}

.blog-text a {
    color: #2c5364;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-text a:hover {
    color: #0f2027;
}

.blog-text blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: #f8f9fa;
    border-left: 4px solid #2c5364;
    font-style: italic;
    color: #4a4a4a;
}

.blog-text code {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: #d63384;
}

.blog-text hr {
    margin: 48px 0;
    border: none;
    border-top: 2px solid #e0e0e0;
}

/* Responsive - Blog Posts */
@media (max-width: 768px) {
    .blog-header {
        padding: 120px 0 60px;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-meta {
        font-size: 1.1rem;
    }

    .blog-content {
        padding: 60px 0 80px;
    }

    .blog-text {
        font-size: 1.05rem;
    }

    .blog-text .lead {
        font-size: 1.25rem;
        margin-bottom: 36px;
        padding-left: 20px;
    }

    .blog-text h2 {
        font-size: 1.8rem;
        margin: 44px 0 20px;
    }

    .blog-text h3 {
        font-size: 1.4rem;
        margin: 32px 0 16px;
    }

    .blog-text h4 {
        font-size: 1.2rem;
        margin: 28px 0 14px;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-meta {
        font-size: 1rem;
    }

    .blog-text {
        font-size: 1rem;
    }

    .blog-text .lead {
        font-size: 1.15rem;
        padding-left: 16px;
        border-left-width: 3px;
    }

    .blog-text h2 {
        font-size: 1.6rem;
    }

    .blog-text h3 {
        font-size: 1.3rem;
    }

    .blog-text h4 {
        font-size: 1.15rem;
    }

    .blog-text ul li {
        padding-left: 28px;
    }

    .blog-text ul li:before {
        left: 8px;
    }
}
