/*
Theme Name: PhotoBooth
Author: Gift Online Ltd
Author URI: http://tidythemes.com/
Description: <strong>UPDATE</strong> - 4.0+ is here, completely overhauled, yet again. As always, <a href="http://tidythemes.com/concept/#upgrading">use caution when upgrading</a> (tidythemes.com/concept/#upgrading) and <a href="http://tidythemes.com/concept/">learn the TidyThemes concept</a> (tidythemes.com/concept). &nbsp; &rarr; <em><strong>CAUTION</strong>: If you're child theming or have clients that are child theming on top of BlankSlate (not the recommended use), please do not blindly upgrade to newer versions.</em> &nbsp; &rarr; <strong>DESCRIPTION</strong>: BlankSlate is the definitive WordPress HTML5 boilerplate starter theme. We've carefully constructed the most clean and minimalist theme available anywhere for designers/developers to use as a base/foundation to build websites for clients or to build completely custom themes from scratch to release faster. Clean, semi-minified, unformatted and valid code, SEO-friendly, no programmer comments, standardized and as white label as possible and most importantly, CSS reset for cross-browser-compatability and no intrusive visual CSS styles added whatsoever. A perfect skeleton theme that blows any others like it (the subsequent underscores.me for example) completely out of the water, as they're simply too overcomplicated for what people really want in this kind of theme. Now comes with jQuery enqueued and ready to go. &nbsp; &rarr; <strong>SUPPORT</strong>: Please use the <a href="http://tidythemes.com/forum/">official support forum</a> (tidythemes.com/forum). Comments and suggestions for improving BlankSlate, please see "<a href="http://tidythemes.com/tidythemes-sucks/">TidyThemes Sucks!</a>" (tidythemes.com/tidythemes-sucks). Just getting started? <a href="http://tidythemes.com/want-to-learn-css/">Want to learn CSS?</a> (tidythemes.com/want-to-learn-css) &nbsp; &rarr; <strong>WHAT'S NEW?</strong>: We stripped down as much custom, extraneous, superfluous junk code as we could and greatly improved the HTML5 structure. <a href="http://make.wordpress.org/themes/author/chipbennett/">Chip Bennett</a> (make.wordpress.org/themes/author/chipbennett), a highly experienced programmer and official WordPress administrator, worked closely with us to audit the theme code for quality. <a href="http://themes.trac.wordpress.org/changeset?old_path=/blankslate/3.3&new_path=/blankslate/4.0">See</a> (themes.trac.wordpress.org/changeset?old_path=/blankslate/3.3&new_path=/blankslate/4.0) just how much we've revamped things. Last, but not least, BlankSlate has now been <a href="https://github.com/tidythemes/blankslate">opened up on GitHub</a> (github.com/tidythemes/blankslate) if anyone would like to make suggested code additions/improvements. Thank you for using BlankSlate.
Version: 0.0.1
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: PhotoBooth

html
{
	font-family: 'Questrial', 'Catamaran', Arial;
}

*/


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: rgba(255, 255, 255, 0.9);
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #2e7d32;
        }
        
        .logo span {
            color: #8d6e63;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover, .nav-links a.active {
            color: #2e7d32;
        }
        
        .nav-links a.active {
            color: #2e7d32;
            font-weight: 700;
        }


        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/api/placeholder/1200/800') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .hero-gallery {
            height: 70vh;
            margin-top: 0 /*80px*/;
            position: relative;
            overflow: hidden;
        }

        
        .cta-button {
            display: inline-block;
            background-color: #2e7d32;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
            margin: 0 10px;
        }
        
        .cta-button.secondary {
            background-color: #8d6e63;
        }
        
        .cta-button:hover {
            background-color: #1b5e20;
        }
        
        .cta-button.secondary:hover {
            background-color: #6d4c41;
        }
        
        .categories {
            padding: 80px 0;
            text-align: center;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 50px;
            color: #2e7d32;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .category-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
        }
        
        .category-img {
            height: 200px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-content {
            padding: 20px;
        }
        
        .category-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .category-content p {
            margin-bottom: 15px;
            color: #666;
        }
        
        .about {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #2e7d32;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            height: 400px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #2e7d32;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
        }

        .page-header {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/600') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .page-header-content {
            max-width: 800px;
            margin: 0 auto;
            padding-top: 80px;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .page-header p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .filters {
								  
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 40px;
								  
							 
											  
						   
        }
        
        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .filter-item select, .filter-item input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: flex-end;
            margin-top: 20px;
        }
        
        .filter-button {
            background-color: #2e7d32;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-left: 10px;
            font-weight: 500;
        }
        
        .reset-button {
            background-color: #8d6e63;
								
						   
        }
        
        .pub-list {
            margin-bottom: 60px;
																		
					  
        }
        
        .pub-card {
            display: flex;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .pub-card:hover {
            transform: translateY(-5px);
        }
        
        .pub-image {
            width: 300px;
            height: 250px;
            background-color: #ddd;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pub-content {
            padding: 25px;
            flex-grow: 1;
        }
        
        .pub-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .pub-title h2 {
            font-size: 24px;
            margin-bottom: 5px;
            color: #2e7d32;
        }
        
        .pub-location {
            color: #666;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .pub-location i {
            margin-right: 5px;
            color: #8d6e63;
        }
        
        .pub-rating {
            color: #ff9800;
            font-size: 24px;
            font-weight: 700;
        }
        
        .pub-features {
            display: flex;
            margin: 15px 0;
            flex-wrap: wrap;
        }
        
        .pub-feature {
            background-color: #f0f0f0;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            margin-right: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
					  
        }
        
        .pub-feature i {
            margin-right: 5px;
            color: #8d6e63;
        }
        
        .pub-description {
							
            margin-bottom: 20px;
            color: #555;
        }
        
        .pub-buttons {
            display: flex;
							
        }
        
        .pub-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #2e7d32;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-right: 15px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .pub-button:hover {
            background-color: #1b5e20;
        }
        
        .pub-button.secondary {
            background-color: #8d6e63;
        }
        
        .pub-button.secondary:hover {
            background-color: #6d4c41;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        .pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            background-color: #f5f5f5;
            border-radius: 5px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .pagination-item:hover, .pagination-item.active {
            background-color: #2e7d32;
            color: white;
        }

        .main-image {
            height: 70%;
            background: url('/api/placeholder/1200/500') center/cover no-repeat;
            border-radius: 10px 10px 0 0;
        }
        
        .thumbnail-row {
            height: 30%;
            display: flex;
            gap: 5px;
            margin-top: 5px;
        }
        
        .thumbnail {
            flex: 1;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
            border-radius: 0 0 10px 10px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        
        .thumbnail:hover {
            opacity: 0.8;
        }

        
        .pub-header {
            background-color: #f5f5f5;
            padding: 30px 0;
            margin-bottom: 40px;
            border-bottom: 1px solid #ddd;
        }
        
        .pub-title-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .pub-title h1 {
            font-size: 36px;
            color: #2e7d32;
            margin-bottom: 10px;
        }
        
        .pub-subtitle {
            font-size: 18px;
            color: #666;
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .pub-subtitle i {
            margin-right: 10px;
            color: #8d6e63;
        }
        
        .pub-rating-box {
            background-color: #2e7d32;
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            min-width: 100px;
        }
        
        .rating-score {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .rating-text {
            font-size: 14px;
        }
        
        .pub-quick-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
        }
        
        .info-item i {
            margin-right: 10px;
            background-color: #8d6e63;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .main-content h2 {
            font-size: 24px;
            color: #2e7d32;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .pub-description {
							
            margin-bottom: 30px;
        }
        
        .pub-description p {
            margin-bottom: 15px;
        }
        
        .feature-list {
            margin-bottom: 30px;
        }
        
        .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .feature-tag {
            background-color: #f0f0f0;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .feature-tag i {
            margin-right: 8px;
            color: #8d6e63;
        }
        
        .menu-preview h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #555;
        }
        
        .menu-item {
            margin-bottom: 20px;
        }
        
        .menu-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .menu-item-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .menu-item-price {
            font-weight: 600;
            color: #2e7d32;
        }
        
        .sidebar-box {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-box h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #2e7d32;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .opening-hours {
            list-style: none;
        }
        
        .opening-hours li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .opening-hours li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 500;
        }
        
        .hours {
            color: #555;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            width: 30px;
            color: #8d6e63;
        }
        
        .contact-item a {
            color: #2e7d32;
            text-decoration: none;
        }
        
        .contact-item a:hover {
            text-decoration: underline;
        }
        
        .map-container {
            height: 250px;
            background-color: #eee;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }

 .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .review-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
									   
        }
        
        .review-top {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .reviewer {
						  
								   
            display: flex;
            align-items: center;
									
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ddd;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .reviewer-name {
            font-weight: 600;
								
						
        }
        
        .review-date {
								
            color: #888;
            font-size: 14px;
        }
        
        .review-rating {
            color: #ff9800;
            font-size: 18px;
            font-weight: 600;
        }
        
        .view-all-btn {
            color: #2e7d32;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        
        .view-all-btn i {
            margin-left: 8px;
        }
        
        .view-all-btn:hover {
            text-decoration: underline;
								
						   
        }
        
        .nearby-section {
            margin-bottom: 60px;
							
        }
        
        .nearby-places {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .nearby-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .nearby-card:hover {
            transform: translateY(-5px);
        }
        
        .nearby-img {
            height: 150px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nearby-content {
            padding: 15px;
        }
        
        .nearby-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #2e7d32;
        }
        
        .nearby-type {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .nearby-distance {
            font-size: 14px;
            color: #888;
        }
        
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #2e7d32;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
        }        

        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .nav-links {
                display: none;
            }
        }
