/*
Theme Name: btprod
Author: Reese Woodginski
Author URI: https://rw-webdevelopment.com
Description: Beachtime Products custom theme
Tags: one-column, custom-logo, custom-menu, editor-style, footer-widgets, full-width-template
Version: 1.0
Requires at least: 6.8.1
Tested up to: 6.8.1
Requires PHP: 8.2.27
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: btp
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Noto Sans", sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            /* padding: 0 0 1rem 0; */
            transition: all 0.3s ease;
        }
        .before-header-bar{
            background: #22d3ee;
        }
        .before-header-bar div{display: flex; justify-content: space-between; max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;}
        .before-header-bar span{color: white; font-weight: 600;}
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 2rem;
            /* height: 60px; */
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: bold;
            color: #2563eb;
            font-size: 1.2rem;
            max-height: 100%;
        }
        .logo .custom-logo{max-height: 60px; width: auto;}
        .custom-logo-link{max-height: 60px;}
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #0ea5e9, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2563eb;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #0ea5e9;
        }

        /* Hero Section */
        .hero {
            height: 817px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/wp-content/themes/btprod/assets/frankford-chair-and-umbrella.jpg");
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding-bottom: 0;
            box-sizing: border-box;
            padding-top: 0;
            margin-top: 84px;
        }
        .hero svg{position: absolute; width: 100%; height: 200px;
  bottom: 0;}
        /* .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 200px 40px;
            animation: wave 10s ease-in-out infinite;
        } */

        @keyframes wave {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-100px); }
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            line-height: 120%;
        }

        .hero .highlight {
            color: #22d3ee;
            text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn, .wpcf7-submit  {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary, .wpcf7-submit {
            background: #22d3ee;
            color: white;
        }

        .btn-primary:hover, .wpcf7-submit:hover  {
            background: #0891b2;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }
/* 
        .weather-widget {
            position: absolute;
            top: 100px;
            left: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1rem;
            color: white;
        }

        .umbrella-icon {
            position: absolute;
            top: 120px;
            right: 2rem;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        } */

        /* Sections */
        section {
            padding: 5rem 0;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-tag {
            color: #22d3ee;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Windscreens Section */
        .windscreens {
            background: #e6ecf3;
            padding-top: 10px;
        }

        .windscreen-features {
            display: flex;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .feature-image {
            width: 50%;
            height: 600px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .feature-image img{width: auto; max-height: 100%; border-radius: 20px;}
        .features-content h3 {
            font-size: 1.8rem;
            color: #2563eb;
            margin-bottom: 1.5rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: #475569;
        }

        .features-list li::before {
            content: '✓';
            color: #22d3ee;
            font-weight: bold;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .popular-combinations {
            background: rgba(34, 211, 238, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .popular-combinations h4 {
            color: #2563eb;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .combinations {
            color: #2563eb;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Gallery Section */
        .gallery {
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: bold;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .gallery-item:nth-child(1) {
            background: linear-gradient(45deg, #fbbf24, #f59e0b);
        }

        .gallery-item:nth-child(2) {
            background: linear-gradient(45deg, #f97316, #ea580c);
        }

        .gallery-item:nth-child(3) {
            background: linear-gradient(45deg, #0ea5e9, #2563eb);
        }

        .gallery-item:nth-child(4) {
            background: linear-gradient(45deg, #22d3ee, #0891b2);
            grid-column: 1 / -1;
            height: 300px;
        }
.gallery-item img {
  height: auto;
  width: 100%;
}
        /* Contact Section */
        .contact {
            background: #e6ecf3;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .contact-form h3 {
            color: #2563eb;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label, .wpcf7-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2563eb;
            font-weight: 500;
        }

        .form-group input, .wpcf7-form-control-wrap input, .wpcf7-form-control-wrap textarea,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #22d3ee;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
.form-group-cont p{display: flex; gap: 10px;}
.form-group-cont p > *{width: 50%;}
.wpcf7-form > p > br{display: none;}
        .store-info {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .store-info h3 {
            color: #2563eb;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .info-item {
            margin-bottom: 1.5rem;
        }

        .info-item h4 {
            color: #2563eb;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-item p {
            color: #64748b;
            margin-left: 1.5rem;
        }

        .map-placeholder {
            height: 350px;
            background: linear-gradient(45deg, #3b82f6, #2563eb);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            margin-top: 1rem;
            padding: 0;
        }
        .map-placeholder iframe{border-radius: 15px;}

        /* Footer */
        footer {
            background: #1e40af;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: flex;
			justify-content: space-between;
			gap: 3rem;
            margin-bottom: 2rem;
        }
.footer-content > div:first-child{width: 46%;}
        .footer-section h3 {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #22d3ee;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
			.hero svg{width: 300%;}
			.before-header-bar div{flex-direction: column;}
			.before-header-bar div span{width: 100%;}
			.before-header-bar > div > span:nth-child(2){display: none;}
			.gallery-grid{grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));}
			.feature-image{width: 100%;
  height: auto;}
			.feature-image img{width: 100%;}
			.features-content .btn-primary{text-align: center;}
			.windscreen-features{flex-direction: column;}
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
			.footer-content{
				flex-direction: column;
			}
			.footer-content > div{width: 100%;}
			.footer-content > div:first-child{width: 100%;}
            .windscreen-features,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .weather-widget,
            .umbrella-icon {
                display: none;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }