@charset "utf-8";
/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }
        
        body {
            background-color: #fff;
            color: #333;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 100;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        }
        
        .nav-logo {
            font-size: 24px;
            font-weight: 700;
            color: #111;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .nav-logo span {
            color: #c00;
        }
        
        .nav-items {
            display: flex;
            list-style: none;
        }
        
        .nav-items li {
            margin: 0 15px;
        }
        
        .nav-items a {
            color: #444;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-items a:hover {
            color: #c00;
        }
        
        .nav-items a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #c00;
            transition: width 0.3s ease;
        }
        
        .nav-items a:hover::after {
            width: 100%;
        }
        
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            margin-top: 60px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), 
                        url('../firstscreen.jpg') center/cover no-repeat;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 70px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            letter-spacing: -1px;
        }
        
        .hero p {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 40px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero-btn {
            display: inline-block;
            background: #c00;
            color: #fff;
            padding: 16px 40px;
            font-size: 18px;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
        }
        
        .hero-btn:hover {
            background: #b00;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
        }
        
        .section {
            padding: 100px 10%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: #c00;
            border-radius: 2px;
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #222;
        }
        
        .intro-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
        }
        
        .intro-image {
            flex: 1;
            position: relative;
        }
        
        .intro-image::before {
            content: '';
            position: absolute;
            width: 90%;
            height: 90%;
            bottom: -20px;
            right: -20px;
            background-color: #f1f1f1;
            z-index: -1;
            border-radius: 8px;
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            object-fit: cover;
        }
        
        .features {
            background-color: #f9f9f9;
            position: relative;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .feature-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .feature-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            background-color: #f1f1f1;
            border-bottom: 1px solid #eee;
        }
        
        .feature-content {
            padding: 30px;
        }
        
        .feature-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #222;
        }
        
        .feature-desc {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }
        
        .gallery-section {
            position: relative;
            background: linear-gradient(135deg, #fff, #f9f5f0);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 25px;
            transform: translateY(40px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .gallery-item:hover .gallery-info {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .gallery-desc {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .cta-section {
            padding: 100px 10%;
            text-align: center;
            background: linear-gradient(to right, #c00, #a00);
            color: white;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 22px;
            font-weight: 300;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .cta-btn {
            display: inline-block;
            background: white;
            color: #c00;
            padding: 16px 40px;
            font-size: 18px;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .cta-btn.outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        footer {
            background-color: #111;
            color: #aaa;
            padding: 70px 10% 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            font-weight: 600;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #c00;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: #fff;
            margin-left: 3px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 14px;
            color: #777;
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 50px;
            }
            
            .hero p {
                font-size: 20px;
            }
            
            .intro-content {
                flex-direction: column;
                gap: 50px;
            }
            
            .intro-image::before {
                display: none;
            }
            
            .section-title {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-items {
                display: none;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section {
                padding: 70px 5%;
            }
            
            .cta-section {
                padding: 70px 5%;
            }
        }