


    
    
    Watercolor Art by Saoirse | Saoirse's Watercolor Studio
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.4;
            color: #000;
            background-color: #fff;
        }

        /* Header with Logo */
        .header {
            text-align: center;
            padding: 40px 20px 20px;
            background: #fff;
        }

        .logo-container {
            margin-bottom: 20px;
        }

        .logo-placeholder {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
            border: 2px dashed #ccc;
        }

        .brand-name {
            font-size: 2.5rem;
            font-weight: bold;
            color: #000;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Navigation */
        .main-nav {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 30px 20px;
            background: #fff;
            font-size: 1rem;
            flex-wrap: wrap;
            border-bottom: 1px solid #eee;
        }

        .main-nav a {
            color: #000;
            text-decoration: none;
            padding: 5px 10px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
            font-weight: 500;
        }

        .main-nav a:hover, .main-nav a.active {
            border-bottom: 2px solid #000;
        }

        /* Hero Banner Section */
        .hero-banner {
            position: relative;
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('data:image/svg+xml,[Hero Background Image]');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .cta-button {
            background: rgba(255,255,255,0.9);
            color: #000;
            padding: 15px 30px;
            font-size: 1.1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
        }

        .cta-button:hover {
            background: rgba(255,255,255,1);
        }

        /* Gallery Sections */
        .gallery-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2rem;
            font-weight: normal;
            color: #000;
            margin-bottom: 40px;
            text-align: left;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            background-color: #f0f8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-style: italic;
            border-radius: 5px;
        }

        /* Category Navigation within sections */
        .category-nav {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .category-nav a {
            color: #000;
            text-decoration: none;
            padding-bottom: 5px;
            border-bottom: 2px solid transparent;
        }

        .category-nav a.active {
            border-bottom: 2px solid #000;
        }

        /* About Section */
        .about-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            font-size: 1rem;
            line-height: 1.6;
        }

        .greeting {
            font-style: italic;
            color: #666;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .hello-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 30px;
            color: #000;
        }

        .about-text p {
            margin-bottom: 20px;
            color: #333;
        }

        .about-image-placeholder {
            width: 100%;
            height: 500px;
            background-color: #f5f5f5;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-style: italic;
            border: 2px dashed #ccc;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-nav {
                gap: 25px;
                font-size: 0.9rem;
            }

            .brand-name {
                font-size: 2rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-section {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hello-title {
                font-size: 2.5rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .main-nav {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
                text-align: center;
            }
        }
    


    <!-- Header with Logo -->
    
        
            [Logo Image]
            Saoirse Watercolors
        
    

    <!-- Main Navigation -->
    
        Home
        Paintings
        Commissions
        Shop
        About
        Contact
    

    <!-- Hero Banner -->
    
        
            Unique watercolors by Saoirse
            Commission a painting now
        
    

    <!-- Paintings Section -->
    
        Paintings
        
            
                
            
            
                [Watercolor Painting 2]
            
            
                [Watercolor Painting 3]
            
            
                [Watercolor Painting 4]
            
            
                [Watercolor Painting 5]
            
            
                [Watercolor Painting 6]
            
            <!-- Second row -->
            
                
            
            
                [Watercolor Painting 8]
            
            
                [Watercolor Painting 9]
            
            
                [Watercolor Painting 10]
            
            
                [Watercolor Painting 11]
            
            
                [Watercolor Painting 12]
            
        
    

    <!-- Commissions Section -->
    
        Commissions
        
            
                [Commission Example 1]
            
            
                [Commission Example 2]
            
            
                [Commission Example 3]
            
        
    

    <!-- Shop Section -->
    
        
            Prints
            T-shirts
        
        
            
                [Print Design 1]
            
            
                [Print Design 2]
            
        
    

    <!-- About Section -->
    
        
            It means "Freedom" in Irish
            Saoirse!
            Welcome to my site.
            I'm Saoirse and I am a passionate watercolor artist creating unique, hand-painted artworks.
            Whatever you are looking for - a custom watercolor commission, a pre-designed painting from my portfolio, or prints of my work, I'm here for you!
            Also, check out my collection of art prints and T-shirts featuring my watercolor designs.
        
        
            [Photo of Saoirse painting]
        
    

